using LeaRun.Application.Entity.InstallManage; using LeaRun.Application.Service.InstallManage; using LeaRun.Util.WebControl; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LeaRun.Application.Busines.InstallManage { public class InstallApplyBLL { private InstallManageService service = new InstallManageService(); public String getInstallApplyList(String st, String et, Pagination pagination,InstallApplyEntity mt = null) { //InstallApplyEntity mt = new InstallApplyEntity(); return service.GetInstallApplyData(st, et, mt, pagination); } public void SaveApply(String applyNumber, String cusName, String linkMan, String linkMobile, String cusAdrr, String applyNum) { try { service.SaveApply(applyNumber,cusName,linkMan,linkMobile,cusAdrr,applyNum); } catch (Exception ex) { throw; } } public InstallApplyEntity GetFormJson(String keyValue) { return service.GetFormJson(keyValue); } //勘测 public void SaveSurvey(String SurveySuggest, Int32 Apply_ID) { try { service.SaveSurvey(SurveySuggest, Apply_ID); } catch (Exception ex) { throw; } } //经理审核 public void MasterVerify(String applyId) { try { service.MasterVerify(applyId); } catch (Exception ex) { throw; } } public void PaymentForm(String applyId) { try { service.PaymentForm(applyId); } catch (Exception ex) { throw; } } public void UpdateEngineer(String appId, String type) { try { service.UpdateEngineer(appId, type); } catch (Exception ex) { throw; } } public void UpdateAceept(String appId, String type) { try { service.UpdateAceept(appId, type); } catch (Exception ex) { throw; } } public void UpdateThroughWater(String appId, String type) { try { service.UpdateThroughWater(appId, type); } catch (Exception ex) { throw; } } public void UpdateCreateCus(String appId, String type) { try { service.UpdateCreateCus(appId, type); } catch (Exception ex) { throw; } } } //public class ManyType //{ // public int SurveyType { get; set; } // public int DesginType { get; set; } // public int DesginVerfiyType { get; set; } // public int MasterVerifyType { get; set; } // public int budgetType { get; set; } // public int PayMentType { get; set; } // public int ConstructionType { get; set; } // public int AcceptType { get; set; } // public int ThroughWaterType { get; set; } // public int CreateCusInfoType { get; set; } //} }