public void PreparePresidentToDiscard(List <Card> cards)
 {
     try
     {
         RoundState = RoundState.PresidentDiscard;
         CardsInHand.AddRange(cards);
     }
     catch (Exception ex)
     {
         Console.WriteLine("PreparePresidentToDiscard.ex: " + ex.Message);
     }
 }