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.
27 lines
1.1 KiB
C#
27 lines
1.1 KiB
C#
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<SysVendor>
|
|
{
|
|
public List<SysVendor> 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<SysVendor> ifVendorDock(String vendorCode);
|
|
public bool InsertData(List<string> sqlStrings, List<DynamicParameters> parameterList);
|
|
public int saveVendor(SysVendor htParams);
|
|
public int updateVendor(SysVendor htParams);
|
|
public int deleteVendor(String vendor_id);
|
|
public List<KeyValueResult> getSelectVendor();
|
|
public int EnableVendor(String vendorId);
|
|
public int DisableVendor(String vendorId);
|
|
public List<Vendor> getExportList(string strWhere, string orderBy);
|
|
}
|
|
}
|