Esempio n. 1
0
 public IActionResult EditStudentType([FromBody] StudentType studentType)
 {
     try
     {
         var result = _studentBusiness.EditStudentType(studentType);
         return(Ok(result));
     }
     catch (Exception ex)
     {
         return(BadRequest(ex));
     }
 }