1234567891011121314 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using TEAMModelOS.Model.Core.Models;
- namespace TEAMModelOS.Service.Core.Interfaces
- {
- public interface IRoleService
- {
- Task<List<Role>> FindRolesByDict(Dictionary<string ,object> dict);
- Task<List<RoleSchool>> FindRolesSchoolByDict(Dictionary<string, object> dict);
- }
- }
|