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 IRoleService : IBusinessService, IBaseService
- {
- //Task<List<Role>> FindRolesByDict(Dictionary<string, object> dict);
- //Task<Role> FindRoleByDict(Dictionary<string, object> dict);
- ////Task<List<SchoolRole>> FindSchoolRolesByDict(Dictionary<string, object> dict);
- //Task<Role> FindRoleByRowKey(string rowKey);
- }
- }
|