IScoreRuleServices.cs 472 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using EMISOnline.Entities;
  6. using Bowin.Common.Linq.Entity;
  7. using EMISOnline.ViewModel;
  8. namespace EMISOnline.CommonLogic.EducationalServices
  9. {
  10. public interface IScoreRuleServices
  11. {
  12. IGridResultSet<ER_ScoreRule> GetScoreRuleList(int pageIndex, int pageSize);
  13. ER_ScoreRule GetScoreRule(Guid ScoreRuleID);
  14. void AddScoreRule(ER_ScoreRule model);
  15. }
  16. }