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
999 B
C#

using Estsh.Core.Model.ExcelModel;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface ICustomerService : IBaseService<SysCustomer>
{
public Hashtable getCustomerListByPage(String enabled, String customer_code, String customer_name,int factoryId, Pager pager, String direction, String sort);
public int saveCustomer(SysCustomer htParams);
public int updateCustomer(SysCustomer htParams);
public List<SysCustomer> getCustomer(String customer_id);
public int deleteCustomer(String ids);
public SysCustomer getCustomerByExistName(string customerName);
public List<KeyValueResult> getSelectCustomer();
public int EnableCustomer(String ids);
public int DisableCustomer(String ids);
public List<Customer> getExportList(String customerCode, String customerName, String enabled, int factoryId);
}
}