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

            return(games);
        }