1234567891011121314151617181920212223 |
- 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 IPaymentStandardServices
- {
- IGridResultSet<PaymentStandardView> GetPaymentStandardViewList(ConfiguretView paymentStandardConditionView, int pageIndex, int pageSize);
- List<PaymentStandardView> GetPaymentStandardViewList();
- PaymentStandardView GetPaymentStandardView(Guid? paymentStandardID);
- void Save(PaymentStandardView paymentStandardView);
- void Delete(IList<Guid?> paymentStandardIDList);
- }
- }
|