IRoleService.cs 396 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using TEAMModelOS.Model.Core.Models;
  6. namespace TEAMModelOS.Service.Core.Interfaces
  7. {
  8. public interface IRoleService
  9. {
  10. Task<List<Role>> FindRolesByDict(Dictionary<string ,object> dict);
  11. Task<List<RoleSchool>> FindRolesSchoolByDict(Dictionary<string, object> dict);
  12. }
  13. }