public IActionResult CreatePointOfInterest(int cityId, [FromBody] PointOfInterest pointOfInterest) { _pointOfInterest.Create(pointOfInterest, cityId); return(Ok()); }