Exemplo n.º 1
0
 public IActionResult AggiungiDocente([FromBody] DocenteModels docente)
 {
     try
     {
         repository.AggiungiDocente(docente.AsDocente(), docente.GetInsegnamenti());
         return(Ok(docente));
     }
     catch (Exception)
     {
         return(BadRequest());
     }
 }
Exemplo n.º 2
0
 public IActionResult AggiungiDocente(DocenteModel docente)
 {
     if (ModelState.IsValid)
     {
         try
         {
             repository.AggiungiDocente(docente.UnDocente, docente.RegistraMaterie());
             return(RedirectToAction("Completo"));
         }
         catch (Exception)
         {
             return(RedirectToAction("Incompleto"));
         }
     }
     return(View(docente));
 }