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