using System; using System.Collections.Generic; using System.Linq; using System.Text; using EMISOnline.Entities; using Bowin.Common.Linq.Entity; using EMISOnline.ViewModel; namespace EMISOnline.CommonLogic.EducationalServices { public interface IScoreRuleServices { IGridResultSet GetScoreRuleList(int pageIndex, int pageSize); ER_ScoreRule GetScoreRule(Guid ScoreRuleID); void AddScoreRule(ER_ScoreRule model); } }