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

35 lines
729 B

5 months ago
  1. using ICSSoft.Frame.Data.DAL;
  2. using ICSSoft.Frame.Data.Entity;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. namespace ICSSoft.Frame.Data.BLL
  8. {
  9. public static class ICSIntSupCalBLL
  10. {
  11. public static void Delete(List<string>id,string conn) {
  12. try {
  13. ICSIntSupCalDAL.Delete(id,conn);
  14. }
  15. catch (Exception ex) {
  16. throw ex;
  17. }
  18. }
  19. public static void Calculate(List<ICSIntSupCalLog> list, string conn) {
  20. try {
  21. ICSIntSupCalDAL.Calculate(list, conn);
  22. }
  23. catch (Exception EX) {
  24. throw EX;
  25. }
  26. }
  27. }
  28. }