public IActionResult InserisciPunteggio([FromBody] StudenteModels[] studenti) { try { foreach (StudenteModels studente in studenti) { repository.AssegnaPunteggio(studente.CodiceFiscale, studente.Corso, studente.Punteggio); } } catch (Exception) { return(BadRequest()); } return(Ok(studenti)); }