void PlayerPickSide(int slot) { if (wasBuyChip == false) { IDialogData dialog; if (PokerObserver.Game.CanBePlay) { dialog = new DialogBuyChip(PokerObserver.Game.SmallBlind, (betting, autoBuy) => { if (betting >= PokerObserver.Game.SmallBlind) { PokerObserver.Instance.SitDown(slot, betting, autoBuy); } }); } else { dialog = new DialogMessage("Thông báo", "Số tiền của bạn không đủ."); } DialogService.Instance.ShowDialog(dialog); } }