public bool HasThisActiveGame(IGame game) { lock (padlock) { try { if (game != null) { return(userDataProxy.HasThisActiveGame(this.id, game.Id, game.GameNumber)); } return(false); } catch { return(false); } } }