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.

23 lines
943 B
C#

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 ICustomerRepository : IBaseRepository<SysCustomer>
{
public List<SysCustomer> getList(string strWhere, string filedOrder);
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public int saveCustomer(SysCustomer htParams);
public int updateCustomer(SysCustomer htParams);
public int deleteCustomer(String vendor_id);
public SysCustomer getCustomerByExistName(string customerCode);
public List<KeyValueResult> getSelectCustomer();
public int EnableCustomer(String vendorId);
public int DisableCustomer(String vendorId);
public List<Customer> getExportList(String strWhere, String orderBy);
}
}