Example #1
0
        public IList <ManualShipmentResponse> GetExternalShipment(object uniqueIdentifier)
        {
            IList <ManualShipmentResponse> manualShipmentResponses = new List <ManualShipmentResponse>();
            ManualShipmentResponse         manualShipmentResponse  = new ManualShipmentResponse();

            try
            {
                manualShipmentResponse.ShipmentId = WarehouseToShipController.SendManualShipment(uniqueIdentifier);
            }
            catch (Exception ex)
            {
                manualShipmentResponse.ErrorMessage = ex.ToString();
            }

            manualShipmentResponses.Add(manualShipmentResponse);

            return(manualShipmentResponses);
        }
 public string VoidShipment(string shipmentNumber)
 {
     return(WarehouseToShipController.VoidShipment(shipmentNumber));
 }
 public string RateManifestShipment(string shipmentNumber)
 {
     return(WarehouseToShipController.RateManifestShipment(shipmentNumber));
 }
 public string PrePrintLabel(string containerNumber)
 {
     return(WarehouseToShipController.PrePrintLabel(containerNumber));
 }
 public string PreRateOrder(string orderNumber)
 {
     return(WarehouseToShipController.PreRateOrder(orderNumber));
 }