| 12345678910111213141516171819202122 |
- 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<WdtLogs> GetList()
- {
- return new WdtLogService().GetLogsTable();
- }
- public List<WdtLogs> GetList(string typeStr)
- {
- return new WdtLogService().GetSingletonTable(typeStr);
- }
- }
- }
|