using Aspose.Cells; 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 IBOMSearchService : IBaseService { public Hashtable getListByPage(String partNo, string partSpec, string itemPartNo, string itemPartSpec, string enabled, string factoryId, Pager pager,string direction,string sort); public List GetPartInfo(string part_no); public List exportBOMInfo(String bomType, String partId); public List exportALL(String bomType); } }