Exemplo n.º 1
0
 /// <summary>
 /// Gets a collection of orders.
 /// </summary>
 /// <param name="storeId">Id of the store.</param>
 /// <param name="orderIds">A collection of unique order id's.</param>
 /// <returns>A collection of orders.</returns>
 public static IEnumerable <Order> GetOrders(long storeId, IEnumerable <Guid> orderIds)
 {
     return(TeaCommerceHelper.GetOrders(storeId, orderIds));
 }