123456789101112131415 |
- 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<School> SaveToCosmosDB(School system);
- Task<School> UpdateSchool(School system);
- Task<List<School>> FindSchoolInfo(Dictionary<string, object> code);
- }
- }
|