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