@model MvcMusicStore.ViewModels.ShoppingCartViewModel @{ ViewBag.Title = "Shopping Cart"; }
Album Name | Price (each) | Quantity | |
---|---|---|---|
@Html.ActionLink(item.Album.Title, "Details", "Store", new { id = item.AlbumId }, null) | @item.Album.Price | @item.Count | Remove from cart |
Total | @Model.CartTotal |