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.

22 lines
976 B
C#

using Estsh.Core.Model.ExcelModel;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Services;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface ICarrierPartManageService : IBaseService<WmsRackPartPackage>
{
public Hashtable getCarrierListByPage(string rackPart, string partPackage, string enabled, int factoryId, Pager pager, String direction, String sort);
public int saveCarrier(WmsRackPartPackage htParams);
public int updateCarrier(WmsRackPartPackage htParams);
public Hashtable getCarrierDetail(String warehouseId);
public Hashtable ImportExcel(List<CarrierPartManage> inputStream, int factoryId, string factoryCode, int empId);
public List<CarrierPartManage> getExportList(string rackPart, string partPackage, string enabled);
public int EnableCarrier(String ids);
public int DisableCarrier(String ids);
}
}