Exemplo n.º 1
0
        /// <summary>
        /// Creates shipping label
        /// </summary>
        public Label CreateLabel(IShippingContext context, Shipment shipment)
        {
            if (!m_ShippingSystem.Capabilities.SupportsLabelCreation)
            {
                throw new ShippingException(StringConsts.SHIPPING_SYSTEM_UNSUPPORTED_ACTION.Args("CreateLabel"));
            }

            return(m_ShippingSystem.CreateLabel(this, context, shipment));
        }
Exemplo n.º 2
0
 /// <summary>
 /// Creates shipping label
 /// </summary>
 public Label CreateLabel(IShippingContext context, Shipment shipment)
 {
     return(m_ShippingSystem.CreateLabel(this, context, shipment));
 }