/// <summary> /// Adds a gift card to the customer's current order. /// </summary> /// <param name="storeId">Id of the store.</param> /// <param name="code">The gift card code.</param> /// <returns>The added gift card.</returns> public static AppliedGiftCard AddGiftCard(long storeId, string code) { return(TeaCommerceHelper.AddGiftCard(storeId, code)); }