@page "/Checkout" @inherits CheckoutBase

Checkout

Payment Method

@if (ShoppingCartItems == null) {
} else {

Payment Summary

@if (ShoppingCartItems.Count() > 0) { @foreach (var item in ShoppingCartItems) { }
Product Price
@item.Quantity x @item.ProductName @item.TotalPrice.ToString("C")
Total @PaymentAmount.ToString("C")
} else {

You currently have no items in your shopping cart.

}
}