鄂尔多斯-招源科技

T_Sys_BanCallOut.cs 626B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CallCenterApi.BLL
  7. {
  8. public class T_Sys_BanCallOut
  9. {
  10. private readonly DAL.T_Sys_BanCallOut dal = new DAL.T_Sys_BanCallOut();
  11. public bool Add(Model.T_Sys_BanCallOut model)
  12. {
  13. return dal.Add(model);
  14. }
  15. public bool Update(Model.T_Sys_BanCallOut model)
  16. {
  17. return dal.Update(model);
  18. }
  19. public Model.T_Sys_BanCallOut GetModel(int deptId)
  20. {
  21. return dal.GetModel(deptId);
  22. }
  23. }
  24. }