Beispiel #1
0
 public IActionResult GetVideoGameById(int id)
 {
     try
     {
         return(Ok(_videoGameService.GetVideoGameById(id)));
     }
     catch (Exception)
     {
         return(NotFound());
     }
 }