WdtLosBll.cs 491 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using YiLvRunFrom.Dal;
  7. using YiLvRunFrom.Model;
  8. namespace YiLvRunFrom.BLL
  9. {
  10. public class WdtLosBll
  11. {
  12. public List<WdtLogs> GetList()
  13. {
  14. return new WdtLogService().GetLogsTable();
  15. }
  16. public List<WdtLogs> GetList(string typeStr)
  17. {
  18. return new WdtLogService().GetSingletonTable(typeStr);
  19. }
  20. }
  21. }