Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            var shipInfo = new ShippingDirections();

            ShipOrder(5, shipInfo, null);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Process the order shipment
 /// </summary>
 /// <param name="orderId">The ID of the order being shipped</param>
 /// <param name="shipping"> The <see cref="ShippingDirections"/> of the items being shipped.</param>
 /// <param name="items"></param>
 static void ShipOrder(int orderId, ShippingDirections shipping, List <ShippedItem> items)
 {
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Processes the order shipment
 /// </summary>
 /// <param name="OrderId">The ID of the order being shipped</param>
 /// <param name="shipping">The <see cref="ShippingDirections"/> of the items being shipped</param>
 /// <param name="products"></param>
 static void ShipOrder(int OrderId, ShippingDirections shipping, List <ShippedItem> products)
 {
 }