Esempio n. 1
0
        public List <Game> RetrieveGamesWithGenreAndMediumFilter(string genreId, string mediumId)
        {
            try
            {
                games = GameAccessor.RetrieveGamesByGenreAndMedium(genreId, mediumId);
            }
            catch (Exception)
            {
                throw;
            }

            return(games);
        }