@page "/ShoppingCart" @inherits ShoppingCartBase @if(ShoppingCartItems == null && ErrorMessage == null) {
} else if(ErrorMessage != null) { } else {

Shopping Cart

@foreach(var item in ShoppingCartItems) {
@item.ProductName
@item.ProductDescription
Price: @item.Price.ToString("C")
}
Cart Summary
Total - (@TotalQuantity items)  @TotalPrice
  Proceed to Checkout
}