Exemple #1
0
 public NormalState(AccountState state)
 {
     this.acc = state.acc;
 }
Exemple #2
0
 public RestrictedState(AccountState state)
 {
     this.acc = state.acc;
 }
Exemple #3
0
 public void setState(AccountState state)
 {
     this.state = state;
 }
Exemple #4
0
 public OverdraftState(AccountState state)
 {
     this.acc = state.acc;
 }