using Estsh.Core.Model.ExcelModel; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Util; using System.Collections; namespace Estsh.Core.Services.IServices { public interface IStockDetailQueryService : IBaseService { public Hashtable getZoneList(string zoneName, string enabled, int factoryId, Pager pager, String direction, String sort); public List getLocateListByPage(string zoneName, string locateName, string enabled, int factoryId); public List GetStockType(); public List getDPSListByPage(string zoneName, string locateName, string cartonNo, string partNo, string partSpec, string enabled, int factoryId,string stockType); public List GetPartNo(); public List GetLocateName(); public List GetSysEnum(string enumtype); public List GetWareHouseName(); public List getExportList(string zoneName, string locateName, string cartonNo, string partNo, string partSpec, string enabled, string factoryId,string stockType); public int EnableData(string ids, string empId); } }