123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using TEAMModelOS.Model.Core.Models;
- using TEAMModelOS.SDK.Module.AzureTable.Interfaces;
- namespace TEAMModelOS.Service.Core.Interfaces
- {
- public interface IPeriodService :IBusinessService , IBaseService
- {
- // Task<Period> SaveOrUpdate(Period period);
- //Task<int > DeleteAll(Dictionary<string, object> dict);
- //Task<List<Period>> FindPeriodsByDict(Dictionary<string, object> dict);
- //Task<List<SchoolPeriod>> FindSchoolPeriodsByDict(Dictionary<string, object> dict);
- // Task<SchoolPeriod> SaveOrUpdateSchoolPeriod(SchoolPeriod schoolPeriod);
- }
- }
|