Exemplo n.º 1
0
 public GoldState(State state)
     : this(state.Balance, state.Account)
 {
 }
Exemplo n.º 2
0
 public SilverState(State state) :
     this(state.Balance, state.Account)
 {
 }
Exemplo n.º 3
0
 public RedState(State state)
 {
     this.Balance = state.Balance;
     this.Account = state.Account;
     this.Initialize();
 }