@using ComputerShopContracts.ViewModels @model List @{ ViewData["Title"] = "Supply"; }

Поставка

@{ if (Model == null) {

Авторизируйтесь

return; }

Создать поставку

@foreach (var item in Model) { }
Номер Статус Дата создания Дата поставки
@Html.DisplayFor(modelItem => item.Id) @Html.DisplayFor(modelItem => item.Status) @Html.DisplayFor(modelItem => item.DateCreate) @Html.DisplayFor(modelItem => item.DateImplement)
}