Example #1
0
 public IActionResult Get()
 {
     try
     {
         return(StatusCode(200, App.GetAll()));
     }
     catch (Exception ex)
     {
         return(StatusCode(500, ex.ToString()));
     }
 }