InstallDudgetBLL.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using LeaRun.Application.Entity.InstallManage;
  2. using LeaRun.Application.Service.InstallManage;
  3. using LeaRun.Util.WebControl;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Data;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace LeaRun.Application.Busines.InstallManage
  11. {
  12. public class InstallDudgetBLL
  13. {
  14. private InstallManageService service = new InstallManageService();
  15. public String getInstallDudgetList(String applyId, Pagination pagination, InstallDudgetEntity entity = null)
  16. {
  17. //InstallApplyEntity mt = new InstallApplyEntity();
  18. return service.GetInstallDudgetData(applyId, entity, pagination);
  19. }
  20. /// <summary>
  21. /// 获得预算细节
  22. /// </summary>
  23. /// <returns></returns>
  24. ///
  25. public DataSet GetBudgetDetail()
  26. {
  27. return service.GetBudgetDetail();
  28. }
  29. public DataTable GetBudgetDetailGoods(string materialID)
  30. {
  31. return service.GetBudgetDetailGoods(materialID);
  32. }
  33. public void SaveForma(String applyId, InstallDudgetEntity entity)
  34. {
  35. service.SaveBudgetForma(applyId, entity);
  36. }
  37. public void SaveForm(String applyId)
  38. {
  39. service.SaveBudgetForm(applyId);
  40. }
  41. }
  42. }