コード例 #1
0
 public IActionResult GetAllVideoGames()
 {
     try
     {
         return(Ok(_videoGameService.GetAllVideoGames()));
     }
     catch (Exception)
     {
         return(NotFound());
     }
 }