Create Ship order command and handler in Ordering.api Create Order management page in WebMVC app
19 lines
568 B
Plaintext
19 lines
568 B
Plaintext
@using Microsoft.eShopOnContainers.WebMVC.Services
|
|
@using Microsoft.eShopOnContainers.WebMVC.ViewModels
|
|
|
|
@model Microsoft.eShopOnContainers.WebMVC.ViewModels.Basket
|
|
@inject IIdentityParser<ApplicationUser> UserManager
|
|
|
|
@{
|
|
ViewData["Title"] = "My Cart";
|
|
}
|
|
|
|
<form method="post" id="cartForm">
|
|
<div class="esh-basket">
|
|
@Html.Partial("_Header", new List<Header>() {
|
|
new Header() { Controller = "Catalog", Text = "Back to catalog" } })
|
|
|
|
@await Component.InvokeAsync("CartList", new { user = UserManager.Parse(User) })
|
|
</div>
|
|
</form>
|