using Dapper; using Estsh.Core.Model.ExcelModel; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Repositories; using System.Collections; namespace Estsh.Core.Repository.IRepositories { public interface IVendorRepository : IBaseRepository { public List getList(string strWhere, string filedOrder); public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); public SysVendor getVendorByExistName(string vendorCode); public int UpdateAllVendorDock(); public List ifVendorDock(String vendorCode); public bool InsertData(List sqlStrings, List parameterList); public int saveVendor(SysVendor htParams); public int updateVendor(SysVendor htParams); public int deleteVendor(String vendor_id); public List getSelectVendor(); public int EnableVendor(String vendorId); public int DisableVendor(String vendorId); public List getExportList(string strWhere, string orderBy); } }