public IEnumerable <Corso> GetAllCorsi() { try { return(repoCorsi.GetAllCorsi()); } catch (ArgumentNullException e) { return(null); } }
public IActionResult Index() { IEnumerable <Corso> corsi = repository.GetAllCorsi(); return(View(corsi)); }