@model ACG6MvcAdHcApi.ViewModels.ProductViewModel <h2>Record Details</h2> <div> <div> <fieldset> <legend></legend> <table> <tr> <td class="editor-label-bold"><label asp-for="Product.ProductID"></label>:</td> <td class="editor-label">@Model.Product.ProductID</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Product.ProductName"></label>:</td> <td class="editor-label">@Model.Product.ProductName</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Product.SupplierID"></label>:</td> <td class="editor-field"><label asp-for="Product.SupplierID"></label></td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Product.CategoryID"></label>:</td> <td class="editor-field"><label asp-for="Product.CategoryID"></label></td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Product.QuantityPerUnit"></label>:</td> <td class="editor-label">@Model.Product.QuantityPerUnit</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Product.UnitPrice"></label>:</td> <td class="editor-label">@Model.Product.UnitPrice</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Product.UnitsInStock"></label>:</td> <td class="editor-label">@Model.Product.UnitsInStock</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Product.UnitsOnOrder"></label>:</td> <td class="editor-label">@Model.Product.UnitsOnOrder</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Product.ReorderLevel"></label>:</td> <td class="editor-label">@Model.Product.ReorderLevel</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Product.Discontinued"></label>:</td> <td class="editor-label">@Model.Product.Discontinued</td> </tr> <tr> <td colspan="2"> <br /> <a href="@Model.ViewReturnUrl">Return</a> </td> </tr> </table> </fieldset> </div> </div>