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 SaveToCosmosDB(SchoolSystem system); Task UpdateSchool(SchoolSystem system); } }