using System; using System.Collections.Generic; using System.Linq; namespace OpenAuth.Domain.Interface { public interface IUserRepository :IRepository { IEnumerable LoadUsers(int pageindex, int pagesize); IEnumerable LoadInOrgs(params string[] orgId); int GetUserCntInOrgs(params string[] orgIds); IEnumerable LoadInOrgs(int pageindex, int pagesize, params string[] orgIds); } }