using Dapper; using Estsh.Core.Model.ExcelModel; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Util; using System.Collections; using System.Data; namespace Estsh.Core.Services.IServices { public interface IProduceSerchService : IBaseService { public Hashtable getProduceSerchListByPage(String cust_pdline_id, String comtype_name, String Model, String Type, Pager pager, String direction, String sort, String factoryId, String enabled); public int saveProduceSerch(SysPartCustOrder htParams); public int updateProduceSerch(SysPartCustOrder htParams); public List getProduceSerch(String part_id); public int deleteProduceSerch(String ids); public List getCust_pdline_nameListData(); public List getType_nameListData(String cust_pdline_id); public List getModelListData(String Type); public Hashtable getTableListByPage(String part_no, String cust_order, Pager pager, String direction, String sort, Boolean isPage); } }