2016-12-29 17:16:26 +01:00

17 lines
481 B
Plaintext

@using Microsoft.eShopOnContainers.WebMVC.Services
@model Microsoft.eShopOnContainers.WebMVC.Models.Basket
@inject IIdentityParser<ApplicationUser> UserManager
@{
ViewData["Title"] = "My Cart";
}
<form method="post" id="cartForm">
<div class="esh-basket">
@await Component.InvokeAsync("Header", new { controller = "Catalog", text = "Back to catalog" })
@await Component.InvokeAsync("CartList", new { user = UserManager.Parse(User) })
</div>
</form>