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