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