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

61 lines
1.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 ICSRESBLL
  11. {
  12. #region AddandEdit
  13. public static void AddandEdit(ICSRES ItemLot, string Appconstr)
  14. {
  15. try
  16. {
  17. ICSRESDAL.AddandEdit(ItemLot, Appconstr);
  18. }
  19. catch (Exception ex)
  20. {
  21. throw ex;
  22. }
  23. }
  24. #endregion
  25. #region select
  26. public static DataTable select(String guid, String Appconstr)
  27. {
  28. try
  29. {
  30. return ICSRESDAL.select(guid, Appconstr);
  31. }
  32. catch (Exception ex)
  33. {
  34. throw ex;
  35. }
  36. }
  37. #endregion
  38. #region delete
  39. public static void delete(List<String> guidList)
  40. {
  41. try
  42. {
  43. ICSRESDAL.delete(guidList);
  44. }
  45. catch (Exception ex)
  46. {
  47. throw ex;
  48. }
  49. }
  50. #endregion
  51. }
  52. }