public IActionResult PutPunto(int regionId, int puntoId) { try { logica.AgregarPunto(regionId, puntoId); return(Ok()); } catch (EntidadNoExisteExcepcion) { return(NotFound("No existe la region o el punto turistico")); } }