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 { 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 getCustomer(String customer_id); public int deleteCustomer(String ids); public SysCustomer getCustomerByExistName(string customerName); public List getSelectCustomer(); public int EnableCustomer(String ids); public int DisableCustomer(String ids); public List getExportList(String customerCode, String customerName, String enabled, int factoryId); } }