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

Kundendetails

@Model.Lastname, @Model.Firstname


Kundenname / -firma
@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.CompanyName)
@Html.DisplayFor(model => model.CompanyName)
Adressdaten
@Html.DisplayNameFor(model => model.Address)
@Html.DisplayFor(model => model.Address)
@Html.DisplayNameFor(model => model.Town)
@Html.DisplayFor(model => model.Town)
@Html.DisplayNameFor(model => model.ZipCode)
@Html.DisplayFor(model => model.ZipCode)
@Html.DisplayNameFor(model => model.Country)
@Html.DisplayFor(model => model.Country)
Sonstige Daten
@Html.DisplayNameFor(model => model.IsBusiness)
@Html.YesNoBadgeFor(model => model.IsBusiness)

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