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);
}
///
/// 获得预算细节
///
///
///
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);
}
}
}