ISchoolSystemService.cs 405 B

1234567891011121314
  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<SchoolSystem> SaveToCosmosDB(SchoolSystem system);
  11. Task<SchoolSystem> UpdateSchool(SchoolSystem system);
  12. }
  13. }