public void RefreshShoe()
        {
            if (RoundInProgress != null)
            {
                throw new InvalidOperationException("Round is in play");
            }

            _shoe = new CardShoe(8);
        }
 public BlackjackGameDealer()
 {
     _shoe = new CardShoe(1);
 }