static void Main(string[] args) { var shipInfo = new ShippingDirections(); ShipOrder(5, shipInfo, null); }
/// <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) { }
/// <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) { }