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); void Delete(Guid id); } }