ScoreServices.cs 437 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ExtensionLogic.CommonLogic.ScoreManage
  6. {
  7. public class ScoreServices : EMIS.CommonLogic.ScoreManage.ScoreServices
  8. {
  9. public ScoreServices() : base()
  10. {
  11. DataRangeFunction = (x => this.GetQueryByDataRangeByCollege(x));
  12. CollegeExpression = (w => (x => x.CollegeID == w));
  13. }
  14. }
  15. }