public HandHistory(GameDescriptor gameDescription)
            : base()
        {
            HandActions = new List<HandAction>();
            Players = new PlayerList();

            ComumnityCards = BoardCards.ForPreflop();
            GameDescription = gameDescription;
        }
 public HandHistorySummary()
 {
     GameDescription = new GameDescriptor();
 }