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