public IActionResult GetPointsOfIntrest(int cityId, int id)
        {
            if (!_repository.CityExists(cityId))
            {
                _logger.LogInformation($"City with Id {cityId} wasn't found.");
                return(NotFound());
            }

            var pointOfIntrest = _repository.GetPointOfIntrestForCity(cityId, id);

            return(Ok(_mapper.Map <PointOfIntrestDto>(pointOfIntrest)));
        }