12345678910111213141516171819 |
- 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<ER_ScoreRule> GetScoreRuleList(int pageIndex, int pageSize);
- ER_ScoreRule GetScoreRule(Guid ScoreRuleID);
- void AddScoreRule(ER_ScoreRule model);
- }
- }
|