using System; using System.Collections.Generic; using System.Linq; namespace OpenAuth.Domain.Interface { public interface IModuleRepository :IRepository { IEnumerable LoadModules(int pageindex, int pagesize); IEnumerable LoadInOrgs(params string[] orgId); int GetModuleCntInOrgs(params string[] orgIds); IEnumerable LoadInOrgs(int pageindex, int pagesize, params string[] orgIds); void Delete(string id); } }