锐腾搅拌上料功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.5 KiB

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using ICSSoft.Frame.Data.Entity;
  6. using ICSSoft.Frame.Data.DAL;
  7. using System.Data;
  8. namespace ICSSoft.Frame.Data.BLL
  9. {
  10. public class ICSUserInfoBLL
  11. {
  12. public static int[] AddAndEdit(List<ICSUserInfo> users)
  13. {
  14. return ICSUserInfoDAL.AddAndEdit(users);
  15. }
  16. public static void DeleteThenInsert(List<ICSUserInfo> users)
  17. {
  18. ICSUserInfoDAL.DeleteThenInsert(users);
  19. }
  20. public static void DeleteAllLine(List<string> listUserCode)
  21. {
  22. ICSUserInfoDAL.DeleteAllLine(listUserCode);
  23. }
  24. public static void DeleteOneLine(List<string> listID)
  25. {
  26. ICSUserInfoDAL.DeleteOneLine(listID);
  27. }
  28. public static DataTable Select(string UserCode)
  29. {
  30. return ICSUserInfoDAL.Select(UserCode);
  31. }
  32. public static bool AllowAdd(string UserCode)
  33. {
  34. return ICSUserInfoDAL.AllowAdd(UserCode);
  35. }
  36. public static bool ExistSGroup(string Sgroup)
  37. {
  38. return ICSUserInfoDAL.ExistSGroup(Sgroup);
  39. }
  40. public static bool ExistUserCode(string userCode)
  41. {
  42. return ICSUserInfoDAL.ExistUserCode(userCode);
  43. }
  44. public static string QueryTeamUsed(List<string> teamList)
  45. {
  46. return ICSUserInfoDAL.QueryTeamUsed(teamList);
  47. }
  48. }
  49. }