@* For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860 *@ @using Microsoft.AspNetCore.Mvc.Localization @using gehGassi.Web.Models @using Microsoft.Extensions.Localization @using gehGassi.Web.Helper @using gehGassi.Core.Services @model gehGassi.Web.Models.PublicWalkRequestWithNamesVm @inject IViewLocalizer Localizer @inject ICountryService CountryService @{ IStringLocalizer annotationsLocalizer = ViewBag.AnnotationsLocalizer; }
@if (!string.IsNullOrWhiteSpace(Model.DogOwnerPhoto)) { } else { }

@Model.DogOwnerName

@Localizer["Common_Dogs"]
@foreach (var dog in Model.Dogs) {
@if (!string.IsNullOrWhiteSpace(dog.Photo)) { } else { }

@dog.Name

}
@Localizer["Common_Address"]
@Model.PickupAddress_AddressLine1
@Model.PickupAddress_AddressLine2
@Model.PickupAddress_Zip, @Model.PickupAddress_City
@CountryService.GetState(Model.PickupAddress_CountryCode, Model.PickupAddress_State).Name, @CountryService.GetCountry(Model.PickupAddress_CountryCode).Name
Info