public string GetGame(int id)
        {
            var games  = new GameDB();
            var result = games.GetGame(id);

            return(result == null ? "{The requested item doesn't exist in database}" : result.ToString());
        }