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 IFinishedHalfInventoryQueryService : IBaseService { public Hashtable getListByPage(string partNo, string partSpec, string enabled, int factoryId, Pager pager, String direction, String sort); public List getExportList(string partNo, string partSpec, string enabled, string factoryId); } }