public async Task <IActionResult> Delete(int?id)
        {
            if (!id.HasValue)
            {
                return(NotFound());
            }

            return(View(await _placesService.GetDeletePlaceViewModelById(id.Value)));
        }