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.
25 lines
1.1 KiB
C#
25 lines
1.1 KiB
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 ISupportingCustomerService : IBaseService<WmsCustomerToSupplier>
|
|
{
|
|
public Hashtable GetListByPage(String customerPart, String partNo,String partSpec, Pager pager, String direction, String sort, String enabled);
|
|
public List<KeyValueResult> GetSelect();
|
|
public List<SysPart> GetDetailByName(String partNo);
|
|
public List<WmsCustomerToSupplier> ifExemptionList(String ruid);
|
|
public List<WmsCustomerToSupplier> ifExemptionList(String customerPart,String partNo);
|
|
public List<SupportingCustomer> getExportList(String partNo, String enabled);
|
|
public int Insert(WmsCustomerToSupplier htParams);
|
|
public int Update(WmsCustomerToSupplier htParams);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
public Hashtable ImportExcel(List<SupportingCustomer> inputStream, int factoryId, string factoryCode, int empId);
|
|
}
|
|
}
|