using System; using System.Collections.Generic; using System.Linq; using System.Text; using Bowin.Common.Linq.Entity; using EMIS.ViewModel.PaymentManage; using EMIS.ViewModel; namespace EMIS.CommonLogic.PaymentManage { public interface IPaymentServices { IGridResultSet GetPaymentDetailViewList(ConfiguretView paymentConditionView, Guid? schoolyearID, Guid? collegeID, int? titleID, int pageIndex, int pageSize); List GetPaymentDetailViewList(ConfiguretView paymentConditionView, Guid? schoolyearID, Guid? collegeID, int? titleID); List GetPaymentTotalViewList(ConfiguretView paymentConditionView, Guid? schoolyearID, Guid? collegeID, int? titleID); void GetNormalStudentCountRate(PaymentDetailView paymentDetailView); void GetNormalPayment(PaymentDetailView paymentDetailView); void GetOuterStudentCountRate(PaymentDetailView paymentDetailView); void GetOuterPayment(PaymentDetailView paymentDetailView); } }