@model GreenTree.Strohrmann.ERP.Web.Models.Business.EmployeeModel @{ ViewData["Title"] = "Mitarbeiterdetails"; }

Mitarbeiterdetails

@Model.Lastname, @Model.Firstname


Mitarbeiterdaten
@Html.DisplayNameFor(model => model.Id)
@Html.DisplayFor(model => model.Id)
@Html.DisplayNameFor(model => model.Firstname)
@Html.DisplayFor(model => model.Firstname)
@Html.DisplayNameFor(model => model.Lastname)
@Html.DisplayFor(model => model.Lastname)
@Html.DisplayNameFor(model => model.Birthdate)
@Html.DisplayFor(model => model.Birthdate)
@Html.DisplayNameFor(model => model.MailAddress)
@Html.DisplayFor(model => model.MailAddress)
@Html.DisplayNameFor(model => model.EmployeeDegree)
@Html.DisplayFor(model => model.EmployeeDegree.Name)

@Html.ActionLink("Bearbeiten", "Edit", new { id = Model.Id })
Zurück zur Liste
Änderungsinfo