You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
660 B
C#
18 lines
660 B
C#
using Estsh.Core.Model.ExcelModel;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using System.Collections;
|
|
using System.Data;
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface IBOMSearchRepository : IBaseRepository<SysBom>
|
|
{
|
|
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public List<SysPart> GetPartInfo(string part_no);
|
|
public List<BOMDefine> getExpotBOMList(String bomType, String partId, String sort, String direction);
|
|
public List<BOMDefine> exportALL(String bomType, String sort, String direction);
|
|
}
|
|
}
|