@using Microsoft.eShopOnContainers.WebMVC.Services @using Microsoft.eShopOnContainers.WebMVC.Models @model Microsoft.eShopOnContainers.WebMVC.Models.Basket @inject IIdentityParser UserManager @{ ViewData["Title"] = "My Cart"; }
@Html.Partial("_Header", new Header(){ Controller = "Catalog", Text = "Back to catalog" }) @await Component.InvokeAsync("CartList", new { user = UserManager.Parse(User) })