public bool CanEndBettingRound()
 {
     return(!ActivePlayers.Exists(x => x.Currency > 0 && !x.HasFolded && (!x.HasActed || GetCallAmount(x) > 0)));
 }