123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.ViewModel;
- using EMIS.ViewModel.ChargeManage.ChargeTotal;
- using Bowin.Common.Linq.Entity;
- namespace EMIS.CommonLogic.ChargeManage.ChargeTotal
- {
- public interface IChargeTotalServices
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- IGridResultSet<ChargeTotalView> GetChargeTotadViewGrid(ConfiguretView configuretView, Guid? collegeID,
- int? yearID, int? standardID, int? educationID, int? learningformID, string learnSystem,
- int? chargeYearID, Guid? chargeProjectID, int? inSchoolStatus, int pageIndex, int pageSize);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- List<ChargeTotalView> GetChargeTotalViewList(ConfiguretView configuretView, Guid? collegeID,
- int? yearID, int? standardID, int? educationID, int? learningformID, string learnSystem,
- int? chargeYearID, Guid? chargeProjectID, int? inSchoolStatus);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ChargeTotalSumView GetTotalView(ConfiguretView configuretView, Guid? collegeID,
- int? yearID, int? standardID, int? educationID, int? learningformID, string learnSystem,
- int? chargeYearID, Guid? chargeProjectID, int? inSchoolStatus, int pageIndex, int pageSize);
- }
- }
|