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