Beispiel #1
0
        public void AddPlayer(string PlayerName, double pot)
        {
            PlayerBO player = new PlayerBO();

            player.PlayerName  = PlayerName;
            player.PlayerMoney = pot;


            conn.AddPlayer(player);
        }