コード例 #1
0
 public InterestAccountState(AccountState accountState)
     : this(accountState.Balance, accountState.Account)
 {
 }
コード例 #2
0
 public OverdrawnAccountState(AccountState accountState)
 {
     Balance = accountState.Balance;
     Account = accountState.Account;
 }
コード例 #3
0
 public Account(string owner)
 {
     _owner       = owner;
     AccountState = new ZeroInterestAccountState(0, this);
 }