using System; using System.Collections.Generic; using System.Text; namespace PokerTournamentManager.Framework { public class Bank { public float Cash { get { throw new System.NotImplementedException(); } set { } } public float ChipCount { get { throw new System.NotImplementedException(); } set { } } } }