IGradeService.cs 552 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using TEAMModelOS.Model.Core.Models;
  6. namespace TEAMModelOS.Service.Core.Interfaces
  7. {
  8. public interface IGradeService : IBusinessService
  9. {
  10. Task<List<Grade>> FindGradesByDict(Dictionary<string, object> dict);
  11. Task<Grade> FindGradeByDict(Dictionary<string, object> dict);
  12. Task<Grade> FindGradeByRowKey(string rowKey);
  13. Task<List<SchoolGrade>> FindSchoolGradesByDict(Dictionary<string, object> dict);
  14. }
  15. }