华恒Mes鼎捷代码
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.

50 lines
1.0 KiB

5 months ago
  1. using ICSSoft.Frame.Data.DAL;
  2. using ICSSoft.Frame.Data.Entity;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. namespace ICSSoft.Frame.Data.BLL
  8. {
  9. public class FormICSAutoCMPOPADDBLL
  10. {
  11. public static void AddorEdit(List<ICSAutoCMPOP> list, string conn)
  12. {
  13. try {
  14. FormICSAutoCMPOPADDDLL.AddorEdit(list, conn);
  15. }
  16. catch (Exception ex) {
  17. throw ex;
  18. }
  19. }
  20. public static ICSAutoCMPOP Search(string id, string conn) {
  21. try
  22. {
  23. return FormICSAutoCMPOPADDDLL.Search(id, conn);
  24. }
  25. catch (Exception ex)
  26. {
  27. throw ex;
  28. }
  29. }
  30. public static void Delete(List<string> id, string conn)
  31. {
  32. try
  33. {
  34. FormICSAutoCMPOPADDDLL.Delete(id, conn);
  35. }
  36. catch (Exception ex)
  37. {
  38. throw ex;
  39. }
  40. }
  41. }
  42. }