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 { public List 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 getSelectCustomer(); public int EnableCustomer(String vendorId); public int DisableCustomer(String vendorId); public List getExportList(String strWhere, String orderBy); } }