public async Task <IActionResult> AddCity(CityForCreationDto city)
 {
     return(Ok(await _locationsService.AddCity(city)));
 }