IRoleService.cs 612 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using TEAMModelOS.Model.Core.Models;
  6. using TEAMModelOS.SDK.Module.AzureTable.Interfaces;
  7. namespace TEAMModelOS.Service.Core.Interfaces
  8. {
  9. public interface IRoleService : IBusinessService, IBaseService
  10. {
  11. //Task<List<Role>> FindRolesByDict(Dictionary<string, object> dict);
  12. //Task<Role> FindRoleByDict(Dictionary<string, object> dict);
  13. ////Task<List<SchoolRole>> FindSchoolRolesByDict(Dictionary<string, object> dict);
  14. //Task<Role> FindRoleByRowKey(string rowKey);
  15. }
  16. }