IPaymentServices.cs 1.0 KB

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Bowin.Common.Linq.Entity;
  6. using EMIS.ViewModel.PaymentManage;
  7. using EMIS.ViewModel;
  8. namespace EMIS.CommonLogic.PaymentManage
  9. {
  10. public interface IPaymentServices
  11. {
  12. IGridResultSet<PaymentDetailView> GetPaymentDetailViewList(ConfiguretView paymentConditionView, Guid? schoolyearID,
  13. Guid? collegeID, int? titleID, int pageIndex, int pageSize);
  14. List<PaymentDetailView> GetPaymentDetailViewList(ConfiguretView paymentConditionView, Guid? schoolyearID,
  15. Guid? collegeID, int? titleID);
  16. List<PaymentTotalView> GetPaymentTotalViewList(ConfiguretView paymentConditionView, Guid? schoolyearID, Guid? collegeID, int? titleID);
  17. void GetNormalStudentCountRate(PaymentDetailView paymentDetailView);
  18. void GetNormalPayment(PaymentDetailView paymentDetailView);
  19. void GetOuterStudentCountRate(PaymentDetailView paymentDetailView);
  20. void GetOuterPayment(PaymentDetailView paymentDetailView);
  21. }
  22. }