/// <summary> /// Gets a specific order. /// </summary> /// <param name="storeId">Id of the store.</param> /// <param name="orderId">Unique id of the order.</param> /// <returns>An order object.</returns> public static Order GetOrder(long storeId, Guid orderId) { return(TeaCommerceHelper.GetOrder(storeId, orderId)); }
/// <summary> /// Gets a specific order. /// </summary> /// <param name="storeId">Id of the store.</param> /// <param name="orderId">Unique order cart number.</param> /// <returns>An order object.</returns> public static Order GetOrder(long storeId, string cartNumber) { return(TeaCommerceHelper.GetOrder(storeId, cartNumber)); }