mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-16 13:09:35 +08:00
17 lines
434 B
C#
17 lines
434 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 Guid[] orgIds);
|
|
IEnumerable<Role> LoadInOrgs(int pageindex, int pagesize, params Guid[] orgIds);
|
|
|
|
void Delete(Guid id);
|
|
|
|
}
|
|
} |