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 IStudentCountRateServices { IGridResultSet GetStudentCountRateViewList(ConfiguretView studentCountRateConditionView, int pageIndex, int pageSize); List GetStudentCountRateViewList(); StudentCountRateView GetCommonStudentCountRateView(); StudentCountRateView GetStudentCountRateView(Guid? studentCountRateID); void Save(StudentCountRateView studentCountRateView); void Delete(IList studentCountRateIDList); } }