IPaymentStandardServices.cs 691 B

1234567891011121314151617181920212223
  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 IPaymentStandardServices
  11. {
  12. IGridResultSet<PaymentStandardView> GetPaymentStandardViewList(ConfiguretView paymentStandardConditionView, int pageIndex, int pageSize);
  13. List<PaymentStandardView> GetPaymentStandardViewList();
  14. PaymentStandardView GetPaymentStandardView(Guid? paymentStandardID);
  15. void Save(PaymentStandardView paymentStandardView);
  16. void Delete(IList<Guid?> paymentStandardIDList);
  17. }
  18. }