@model Bookstore.Web.ViewModel.Checkout.CheckoutFinishedViewModel

Order Placed Successfully!





@foreach (var item in Model.Items) { var total = item.Price * item.Quantity; }
Cover name price quantity total
@item.Bookname $@item.Price @item.Quantity $@total
Back to home