123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Bowin.Common.Linq.Entity;
- using EMIS.Entities;
- using EMIS.ViewModel.ChargeManage.ChargeSituation;
- using EMIS.ViewModel;
- namespace EMIS.CommonLogic.ChargeManage.ChargeSituation
- {
- public interface IChargeProjectServices
- {
-
-
-
-
-
-
-
- IGridResultSet<ChargeProjectView> GetChargeProjectViewGrid(ConfiguretView configuretView, int pageIndex, int pageSize);
-
-
-
-
-
- List<ChargeProjectView> GetChargeProjectViewList(ConfiguretView configuretView);
-
-
-
-
-
- EC_ChargeProject GetChargeProject(Guid? chargeProjectID);
-
-
-
-
-
- ChargeProjectView GetChargeProjectView(Guid? chargeProjectID);
-
-
-
-
-
- ChargeProjectView GetChargeProjectDetailsView(Guid? chargeProjectID);
-
-
-
-
- void ChargeProjectAdd(ChargeProjectView chargeProjectView);
-
-
-
-
-
- bool ChargeProjectDelete(List<Guid> chargeProjectIDs);
-
-
-
-
-
-
- string GetVerification(Guid? chargeProjectID, string chrageProjectName);
- }
- }
|