IExamScoreRangeService.cs 361 B

12345678910111213141516
  1. using YBEE.EQM.Core;
  2. namespace YBEE.EQM.Application;
  3. /// <summary>
  4. /// 分数段服务
  5. /// </summary>
  6. public interface IExamScoreRangeService
  7. {
  8. /// <summary>
  9. /// 获取分数段列表
  10. /// </summary>
  11. /// <param name="type"></param>
  12. /// <returns></returns>
  13. Task<List<ExamScoreRangeOutput>> GetList(ExamScoreRangeType? type = null);
  14. }