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

102 lines
2.4 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 System.Data;
  7. using ICSSoft.Frame.Data.Entity;
  8. namespace ICSSoft.Frame.Data.BLL
  9. {
  10. public class ICSOQCCKGROUPBLL
  11. {
  12. #region AddandEdit
  13. public static void AddandEdit(ICSOQCCKGROUP ItemLot, string Appconstr)
  14. {
  15. try
  16. {
  17. ICSOQCCKGROUPDAL.AddandEdit(ItemLot, 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)
  27. {
  28. ICSOQCCKGROUPDAL.delete(guidList);
  29. }
  30. #endregion
  31. #region 获取检验方式
  32. public static DataTable SearchData(string dsconn)
  33. {
  34. try
  35. {
  36. return ICSOQCCKGROUPDAL.SearchData(dsconn);
  37. }
  38. catch (Exception ex)
  39. {
  40. throw ex;
  41. }
  42. }
  43. public static DataTable SearchData(string EnumText, string dsconn)
  44. {
  45. try
  46. {
  47. return ICSOQCCKGROUPDAL.SearchData(EnumText, dsconn);
  48. }
  49. catch (Exception ex)
  50. {
  51. throw ex;
  52. }
  53. }
  54. #endregion
  55. #region 获取检验属性
  56. public static DataTable SearchDataa(string dsconn)
  57. {
  58. try
  59. {
  60. return ICSOQCCKGROUPDAL.SearchDataa(dsconn);
  61. }
  62. catch (Exception ex)
  63. {
  64. throw ex;
  65. }
  66. }
  67. public static DataTable SearchDataa(string EnumText, string dsconn)
  68. {
  69. try
  70. {
  71. return ICSOQCCKGROUPDAL.SearchDataa(EnumText, dsconn);
  72. }
  73. catch (Exception ex)
  74. {
  75. throw ex;
  76. }
  77. }
  78. #endregion
  79. public static ICSOQCCKGROUP search(string CKGROUP, String Appconstr)
  80. {
  81. return ICSOQCCKGROUPDAL.search(CKGROUP, Appconstr);
  82. }
  83. public static string AddList(List<ICSOQCCKGROUP> InfoList, string Appconstr)
  84. {
  85. try
  86. {
  87. return ICSOQCCKGROUPDAL.AddList(InfoList, Appconstr);
  88. }
  89. catch (Exception ex)
  90. {
  91. throw ex;
  92. }
  93. }
  94. }
  95. }