ISchoolsService.cs 379 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using TEAMModelOS.Model.Core;
  6. using TEAMModelOS.SDK.Extension.DataResult.JsonRpcRequest;
  7. namespace TEAMModelOS.Service.Core.Interfaces
  8. {
  9. public interface ISchoolsService : IBusinessService
  10. {
  11. Task<List<SchoolInfo>> GetSchools(JosnRPCRequest<FindSchoolByCode> codeInfo);
  12. }
  13. }