@model PostgreSqlDotnetCore.Models.UsersClass
@{
ViewBag.Title = "Details";
}
Details
CustomerClass
-
@Html.DisplayNameFor(model => model.name)
-
@Html.DisplayFor(model => model.name)
-
@Html.DisplayNameFor(model => model.lastname)
-
@Html.DisplayFor(model => model.lastname)
-
@Html.DisplayNameFor(model => model.email)
-
@Html.DisplayFor(model => model.email)
-
@Html.DisplayNameFor(model => model.password)
-
@Html.DisplayFor(model => model.password)
-
@Html.DisplayNameFor(model => model.number)
-
@Html.DisplayFor(model => model.number)
@{
if (Model != null)
{
Html.ActionLink("Edit", "Edit", new { id = Model.id });
} else
{
NO ACCESS
}
}
@Html.ActionLink("Back to List", "Index")