Beispiel #1
0
        public async Task <bool> Exists(GameRequest request)
        {
            bool result = await _client.GameExists(request.GameId);

            return(result);
        }
Beispiel #2
0
 public async Task <bool> Exists(string id)
 {
     return(await _client.GameExists(_game.GameId));
 }