mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
19 lines
557 B
C#
19 lines
557 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace OpenAuth.Domain.Interface
|
|
{
|
|
public interface IRoleRepository :IRepository<Role>
|
|
{
|
|
IEnumerable<Role> LoadRoles(int pageindex, int pagesize);
|
|
|
|
int GetRoleCntInOrgs(params string[] orgIds);
|
|
IEnumerable<Role> LoadInOrgs(int pageindex, int pagesize, params string[] orgIds);
|
|
IEnumerable<Role> LoadInOrgs(params string[] orgId);
|
|
IEnumerable<Role> LoadForUser(string userId);
|
|
|
|
void Delete(string id);
|
|
|
|
}
|
|
} |