1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using LeaRun.Application.Entity.InstallManage;
- using LeaRun.Application.Service.InstallManage;
- using LeaRun.Util.WebControl;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LeaRun.Application.Busines.InstallManage
- {
- public class InstallDudgetBLL
- {
- private InstallManageService service = new InstallManageService();
- public String getInstallDudgetList(String applyId, Pagination pagination, InstallDudgetEntity entity = null)
- {
- //InstallApplyEntity mt = new InstallApplyEntity();
- return service.GetInstallDudgetData(applyId, entity, pagination);
- }
- /// <summary>
- /// 获得预算细节
- /// </summary>
- /// <returns></returns>
- ///
- public DataSet GetBudgetDetail()
- {
- return service.GetBudgetDetail();
- }
- public DataTable GetBudgetDetailGoods(string materialID)
- {
- return service.GetBudgetDetailGoods(materialID);
- }
- public void SaveForma(String applyId, InstallDudgetEntity entity)
- {
- service.SaveBudgetForma(applyId, entity);
- }
- public void SaveForm(String applyId)
- {
- service.SaveBudgetForm(applyId);
- }
- }
- }
|