using System; using System.Collections.Generic; using System.Linq; namespace OpenAuth.Domain.Interface { public interface ICategoryRepository :IRepository { IEnumerable LoadCategorys(int pageindex, int pagesize); IEnumerable LoadInOrgs(params Guid[] orgId); int GetCategoryCntInOrgs(params Guid[] orgIds); IEnumerable LoadInOrgs(int pageindex, int pagesize, params Guid[] orgIds); /// /// 获取子分类ID /// Guid[] GetSubIds(Guid orgId); void Delete(Guid id); } }