锐腾搅拌上料功能
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.

44 lines
971 B

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using ICSSoft.Frame.Data.DAL;
  6. using ICSSoft.Frame.Data.Entity;
  7. using System.Data;
  8. namespace ICSSoft.Frame.Data.BLL
  9. {
  10. public class ICSOP2RESBLL
  11. {
  12. #region AddandEdit
  13. public static void AddandEdit(DataTable dt,string id,string code, string Appconstr)
  14. {
  15. try
  16. {
  17. ICSOP2RESDAL.AddandEdit(dt,id,code, Appconstr);
  18. }
  19. catch (Exception ex)
  20. {
  21. throw ex;
  22. }
  23. }
  24. #endregion
  25. #region delete
  26. public static void delete(List<String> guidList,string conn)
  27. {
  28. ICSOP2RESDAL.delete(guidList, conn);
  29. }
  30. #endregion
  31. #region edit
  32. public static void edit(List<string> idList,List<string> seqList)
  33. {
  34. ICSOP2RESDAL.Edit(idList, seqList);
  35. }
  36. #endregion
  37. }
  38. }