예제 #1
0
 //[FormatFilter]
 public IActionResult GetAllCar()
 {
     try
     {
         return(Ok(carService.GetAllCar()));
     }
     catch (Exception)
     {
         return(StatusCode(500));
     }
 }