示例#1
0
    protected string GetSubtotalText(object cartItem)
    {
        CartItem item = ((CartItem)cartItem);

        return(uxCurrencyControl.CurrentCurrency.FormatPrice(
                   item.GetShoppingCartUnitPrice(StoreContext.WholesaleStatus)
                   * item.Quantity));
    }