Example #1
0
 public IHttpActionResult GetStudents(int id)
 {
     try
     {
         return(Ok(_service.GetAllStudents(id)));
     }
     catch (NotFoundException)
     {
         return(NotFound());
     }
 }