@model PerformerProfile @{ ViewData["Title"] = "Your performer profile"; } @section header { }

@ViewData["Title"]

@Html.DisplayFor(model => model)

Setup below your activity parameters:


@Html.Hidden("OrganizationAddress.Latitude") @Html.Hidden("OrganizationAddress.Longitude") @Html.Hidden("PerformerId")
Instrumentation
@Html.Hidden("PerfomerId")
@section scripts { @{ await Html.RenderPartialAsync("_ValidationScriptsPartial"); } @{ await Html.RenderPartialAsync("_MapScriptsPartial"); } }