华恒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.

98 lines
2.3 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 ICSSecDocTypeStepBLL
  11. {
  12. #region 增加修改
  13. public static void AddandEdit(ICSSecDocTypeStep line, string Appconstr)
  14. {
  15. try
  16. {
  17. ICSSecDocTypeStepDAL.AddandEdit(line, Appconstr);
  18. }
  19. catch (Exception ex)
  20. {
  21. throw ex;
  22. }
  23. }
  24. #endregion
  25. #region 增加修改List
  26. public static void AddandEditList(List<ICSSecDocTypeStep> lineList, string Appconstr)
  27. {
  28. try
  29. {
  30. ICSSecDocTypeStepDAL.AddandEditList(lineList, Appconstr);
  31. }
  32. catch (Exception ex)
  33. {
  34. throw ex;
  35. }
  36. }
  37. #endregion
  38. #region 查询
  39. public static ICSSecDocTypeStep select(String guid, String Appconstr)
  40. {
  41. try
  42. {
  43. return ICSSecDocTypeStepDAL.select(guid, Appconstr);
  44. }
  45. catch (Exception ex)
  46. {
  47. throw ex;
  48. }
  49. }
  50. public static ICSSecDocTypeStep selectSeqTop(String DocTypeID, String Appconstr)
  51. {
  52. try
  53. {
  54. return ICSSecDocTypeStepDAL.selectSeqTop(DocTypeID, Appconstr);
  55. }
  56. catch (Exception ex)
  57. {
  58. throw ex;
  59. }
  60. }
  61. public static ICSSecDocTypeStep selectStepBySeq(String DocTypeID,String seq ,String Appconstr)
  62. {
  63. try
  64. {
  65. return ICSSecDocTypeStepDAL.selectStepBySeq(DocTypeID, seq, Appconstr);
  66. }
  67. catch (Exception ex)
  68. {
  69. throw ex;
  70. }
  71. }
  72. #endregion
  73. #region 删除
  74. public static void delete(List<String> guidList, String Appconstr)
  75. {
  76. try
  77. {
  78. ICSSecDocTypeStepDAL.delete(guidList, Appconstr);
  79. }
  80. catch (Exception ex)
  81. {
  82. throw ex;
  83. }
  84. }
  85. #endregion
  86. }
  87. }