@model GarageBandz.Domain.Country

Dashboard Gestione Nazioni

Da questa pagina puoi creare o modificare le nazioni
@using (Html.BeginForm("SaveCountry", "Place", FormMethod.Post, new { enctype = "multipart/form-data" })) {
@Html.TextBoxFor(x => x.Name, new { @class = "form-control" })
@Html.HiddenFor(x => x.Id) }

Regioni associate
@if (Model.States != null) { foreach (var state in Model.States) { } } else { }
Nome Azioni
@state.Name