using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using YiLvRunFrom.Dal; using YiLvRunFrom.Model; namespace YiLvRunFrom.BLL { public class WdtLosBll { public List GetList() { return new WdtLogService().GetLogsTable(); } public List GetList(string typeStr) { return new WdtLogService().GetSingletonTable(typeStr); } } }