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; namespace Estsh.Core.Repository.IRepositories { public interface IProduceSerchRepository : IBaseRepository { public List getList(string strWhere, string filedOrder); public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); public int saveProduceSerch(SysPartCustOrder htParams); public int updateProduceSerch(SysPartCustOrder htParams); public int deleteProduceSerch(String part_id); public List getCust_pdline_nameListData(); public List getType_nameListData(String cust_pdline_id); public List getModelListData(String Type); public Hashtable getTableListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); } }