using Estsh.Core.Model.ExcelModel; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Repositories; using Estsh.Core.Util; using System.Collections; using System.Data; namespace Estsh.Core.Repository.IRepositories { public interface IStockDetailQueryRepository : IBaseRepository { public Hashtable getZoneList(int PageSize, int PageIndex, string strWhere, string OrderBy); public List getLocateListByPage(string strWhere); public List getListByPage(string strWhere); public List GetStockType(); public String isExsitPart_no(String part_no); public List GetPartNo(); public List GetLocateName(); public List GetSysEnum(string enumtype); public List GetWareHouseName(); public List getExportList(string strWhere); public int EnableData(string id, string empId); } }