public List <Game> RetrieveGamesByGenreID(string genreId) { try { games = GameAccessor.RetrieveGamesByGenre(genreId); } catch (Exception) { throw; } return(games); }