예제 #1
0
파일: User.cs 프로젝트: shoferb/OYAOB
 public bool HasThisSpectetorGame(IGame game)
 {
     lock (padlock)
     {
         try
         {
             if (game != null)
             {
                 return(userDataProxy.HasThisSpectetorGame(this.id, game.Id, game.GameNumber));
             }
             return(false);
         }
         catch
         {
             return(false);
         }
     }
 }