예제 #1
0
 /// <summary>
 /// Gets finalized orders for a specific customer.
 /// </summary>
 /// <param name="storeId">Id of the store.</param>
 /// <param name="customerId">Id of the customer.</param>
 /// <returns>A collection of orders.</returns>
 public static IEnumerable <Order> GetFinalizedOrdersForCustomer(long storeId, string customerId)
 {
     return(TeaCommerceHelper.GetFinalizedOrdersForCustomer(storeId, customerId));
 }