Esempio n. 1
0
 public IActionResult FetchStudents(string orderBy)
 {
     try
     {
         return(Ok(_dbService.FetchStudents()));
     }
     catch (Exception e)
     {
         return(BadRequest("Exception: " + e.Message + "\n" + e.StackTrace));
     }
 }