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