IGradeService.cs 704 B

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