using System; using System.Collections.Generic; using System.Linq; namespace OpenAuth.Domain.Interface { public interface IRoleRepository :IRepository { IEnumerable LoadRoles(int pageindex, int pagesize); int GetRoleCntInOrgs(params Guid[] orgIds); IEnumerable LoadInOrgs(int pageindex, int pagesize, params Guid[] orgIds); void Delete(Guid id); } }