1234567891011121314 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using TEAMModelOS.Model.BaseInfo.Models;
- namespace TEAMModelOS.Service.Core.Interfaces
- {
- public interface ISchoolSystemService : IBusinessService, IBaseService
- {
- Task<SchoolSystem> SaveToCosmosDB(SchoolSystem system);
- Task<SchoolSystem> UpdateSchool(SchoolSystem system);
- }
- }
|