@model pwt_0x01_ng.Models.OrderItem @{ ViewData["Title"] = "Delete"; }

@ViewData["Title"]

@ViewData["Message"]

Are you sure you want to delete this?

OrderItem


@Html.DisplayNameFor(model => model.Amount)
@Html.DisplayFor(model => model.Amount)
@Html.DisplayNameFor(model => model.Price)
@Html.DisplayFor(model => model.Price)
@Html.DisplayNameFor(model => model.Order)
@Html.DisplayFor(model => model.Order.Order_Number)
@Html.DisplayNameFor(model => model.Product)
@Html.DisplayFor(model => model.Product.Description)
@Html.DisplayNameFor(model => model.Created)
@Html.DisplayFor(model => model.Created)
@Html.DisplayNameFor(model => model.Updated)
@Html.DisplayFor(model => model.Updated)
| Back to List