@model PostgreSqlDotnetCore.Models.VetCenterWithCity @{ ViewBag.Title = "Details"; }
@Html.DisplayNameFor(model => model.vet_center_name) | @Html.DisplayFor(model => model.vet_center_name) |
---|---|
@Html.DisplayNameFor(model => model.adress) | @Html.DisplayFor(model => model.adress) |
@Html.DisplayNameFor(model => model.workinghours) | @Html.DisplayFor(model => model.workinghours) |
@Html.DisplayNameFor(model => model.description) | @Html.DisplayFor(model => model.description) |
@Html.DisplayNameFor(model => model.phonenumber) | @Html.DisplayFor(model => model.phonenumber) |
@Html.DisplayNameFor(model => model.latitude) | @Html.DisplayFor(model => model.latitude) |
@Html.DisplayNameFor(model => model.longitude) | @Html.DisplayFor(model => model.longitude) |
@Html.DisplayNameFor(model => model.city_name) | @Html.DisplayFor(model => model.city_name) |
@Html.ActionLink("Edit", "Edit", new { id = Model.id }) | @Html.ActionLink("Delete", "Delete", new { id = Model.id })
}@Html.ActionLink("Back to List", "Index")