@model GarageBandz.Domain.City

Dashboard Gestione Città

Da questa pagina puoi creare o modificare le città
@using(Html.BeginForm("Save", "", FormMethod.Post)) {
@Html.TextBoxFor(x => x.Name, new { @class="form-control" })
@Html.DropDownListFor(x => x.County.Id, GarageBandz.Web.Helpers.Metadata.Counties(Model.Id), "Seleziona...", new { @class = "form-control" })
@Html.HiddenFor(x => x.Id) @Html.HiddenFor(x => x.County.Id) }