Exemplo n.º 1
0
 public Deposit(Account account, double amount)
 {
     _account    = account;
     _amount     = amount;
     _translator = LanguageSingleton.Instance;
     IsCompleted = false;
 }
Exemplo n.º 2
0
 public Transfer(Account fromAccount, Account toAccount, double amount)
 {
     _fromAccount = fromAccount;
     _toAccount   = toAccount;
     _amount      = amount;
     _translator  = LanguageSingleton.Instance;
     IsCompleted  = false;
 }