示例#1
0
文件: User.cs 项目: shoferb/OYAOB
 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);
         }
     }
 }