Beispiel #1
0
        public List <Game> RetrieveSupplierGamesStock(int supplierId)
        {
            try
            {
                games = GameAccessor.RetrieveGamesFromSupplier(supplierId);
            }
            catch (Exception)
            {
                throw;
            }

            return(games);
        }