ISchoolSystemService.cs 457 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using TEAMModelOS.Model.BaseInfo.Models;
  6. namespace TEAMModelOS.Service.Core.Interfaces
  7. {
  8. public interface ISchoolSystemService : IBusinessService, IBaseService
  9. {
  10. Task<School> SaveToCosmosDB(School system);
  11. Task<School> UpdateSchool(School system);
  12. Task<List<School>> FindSchoolInfo(Dictionary<string, object> code);
  13. }
  14. }