using Estsh.Core.Model.ExcelModel; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Repositories; using System.Collections; namespace Estsh.Core.Repository.IRepositories { public interface IInventTransQueryRepository : IBaseRepository { public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); public List getExportList(string strWhere, string orderBy); public List GetStockTransType(); public List GetErpwarehouse(); public List GetSrcLocate(); public List Getuserinfo(); } }