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
905 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 ICarrierManageService : IBaseService<WmsRack>
{
public Hashtable getCarrierListByPage(string rackNo, string enabled, int factoryId, Pager pager, String direction, String sort);
public int saveCarrier(WmsRack htParams);
public int updateCarrier(WmsRack htParams);
public Hashtable getCarrierDetail(String warehouseId);
public Hashtable ImportExcel(List<CarrierManage> inputStream, int factoryId, string factoryCode, int empId);
public List<CarrierManage> getExportList(string rackNo, string enabled, string factoryId);
public int EnableCarrier(String ids);
public int DisableCarrier(String ids);
}
}