/// <summary> /// Format a decimal to a price using the current currency. /// </summary> /// <param name="storeId">Id of the store.</param> /// <param name="price">The price to format excl. VAT.</param> /// <returns>A price object.</returns> public static Price FormatPrice(long storeId, decimal price) { return(TeaCommerceHelper.FormatPrice(storeId, price)); }