Exemplo n.º 1
0
 public OverdrawnAccountState(AccountState accountState) : this(accountState.Balance, accountState.Account)
 {
 }
Exemplo n.º 2
0
 public Account(string owner)
 {
     _owner       = owner;
     AccountState = new ZeroInterestAccountState(0, this);
 }