Пример #1
0
 // Overloaded constructors
 public GoldState(State state)
     : this(state.Balance, state.Account)
 {
 }
Пример #2
0
 // Constructor
 public RedState(State state)
 {
     this.balance = state.Balance;
     this.account = state.Account;
     Initialize();
 }
Пример #3
0
 // Overloaded constructors
 public SilverState(State state)
     : this(state.Balance, state.Account)
 {
 }
Пример #4
0
 // Constructor
 public Account(string owner)
 {
     // New accounts are 'Silver' by default
     this._owner = owner;
     this._state = new SilverState(0.0, this);
 }