コード例 #1
0
 /// <summary>
 /// Fetches the shipping options.
 /// </summary>
 /// <param name="order">The Order</param>
 /// <returns></returns>
 public static ShippingOptionCollection FetchShippingOptions(Order order)
 {
     ShippingService shippingService = new ShippingService();
       ShippingOptionCollection shippingOptionCollection = shippingService.GetShippingOptions(order);
       return shippingOptionCollection;
 }
コード例 #2
0
 /// <summary>
 /// Fetches the shipping options.
 /// </summary>
 /// <param name="userName">Name of the user.</param>
 /// <returns></returns>
 public static ShippingOptionCollection FetchShippingOptions(string userName)
 {
     Order order = new OrderController().FetchOrder(userName);
       ShippingService shippingService = new ShippingService();
       ShippingOptionCollection shippingOptionCollection = shippingService.GetShippingOptions(order);
       return shippingOptionCollection;
 }