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

97 lines
2.2 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.DAL;
  6. using ICSSoft.Frame.Data.Entity;
  7. using System.Data;
  8. namespace ICSSoft.Frame.Data.BLL
  9. {
  10. public class ICSASNIQCBLL
  11. {
  12. #region AddandEdit
  13. public static void Edit(ICSASNIQC ItemLot, string Appconstr)
  14. {
  15. try
  16. {
  17. ICSASNIQCDal.Edit(ItemLot, Appconstr);
  18. }
  19. catch (Exception ex)
  20. {
  21. throw ex;
  22. }
  23. }
  24. #endregion
  25. #region AddandEdit
  26. public static void save(DataTable retData, string Appconstr)
  27. {
  28. try
  29. {
  30. ICSASNIQCDal.Save(retData, Appconstr);
  31. }
  32. catch (Exception ex)
  33. {
  34. throw ex;
  35. }
  36. }
  37. #endregion
  38. #region select
  39. public static ICSASNIQC select(String guid, String Appconstr)
  40. {
  41. return ICSASNIQCDal.select(guid, Appconstr);
  42. }
  43. #endregion
  44. #region query
  45. public static ICSASNIQC Query(String iqcno, String Appconstr)
  46. {
  47. return ICSASNIQCDal.Query(iqcno,Appconstr);
  48. }
  49. #endregion
  50. #region delete
  51. public static void delete(List<String> guidList)
  52. {
  53. try
  54. {
  55. ICSASNIQCDal.delete(guidList);
  56. }
  57. catch (Exception ex)
  58. {
  59. throw ex;
  60. }
  61. }
  62. #endregion
  63. #region cancel
  64. public static void cancel(List<String> guidList, List<string> lineList)
  65. {
  66. try
  67. {
  68. ICSASNIQCDal.cancel(guidList,lineList);
  69. }
  70. catch (Exception ex)
  71. {
  72. throw ex;
  73. }
  74. }
  75. #endregion
  76. #region OK
  77. public static void OK(List<String> guidList,List<string> lineList)
  78. {
  79. try
  80. {
  81. ICSASNIQCDal.OK(guidList, lineList);
  82. }
  83. catch (Exception ex)
  84. {
  85. throw ex;
  86. }
  87. }
  88. #endregion
  89. }
  90. }