using Dapper; 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 IOutsourceBomRepository : IBaseRepository { public List getList(string strWhere); public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); public int saveOutsourceBom(WmsOutsourceBom ht); public int updateOutsourceBom(WmsOutsourceBom ht); public int deleteOutsourceBom(String ruid); public List GetPartInfo(string part_no); public List GetpartInfo(); public int EnableOutsourceBom(String ruid); public int DisableOutsourceBom(String ruid); public WmsOutsourceBom ifExistsOutsourceBom(string zoneName, string vendorCode, string partNo); public List getExportList(string strwhere, string orderBy); public bool InsertData(List sqlStrings, List parameterList); } }