|
|
@ -1,4 +1,5 @@ |
|
|
|
@using Microsoft.eShopOnContainers.WebMVC.Services |
|
|
|
@using Microsoft.eShopOnContainers.WebMVC.Models |
|
|
|
|
|
|
|
@model Microsoft.eShopOnContainers.WebMVC.Models.Basket |
|
|
|
@inject IIdentityParser<ApplicationUser> UserManager |
|
|
@ -9,7 +10,7 @@ |
|
|
|
|
|
|
|
<form method="post" id="cartForm"> |
|
|
|
<div class="esh-basket"> |
|
|
|
@await Component.InvokeAsync("Header", new { controller = "Catalog", text = "Back to catalog" }) |
|
|
|
@Html.Partial("_Header", new Header(){ Controller = "Catalog", Text = "Back to catalog" }) |
|
|
|
|
|
|
|
@await Component.InvokeAsync("CartList", new { user = UserManager.Parse(User) }) |
|
|
|
</div> |
|
|
|