public string GetTime(string format)
 {
     return(_time.GetTime(format));
 }
Exemple #2
0
 public void Deposit(int amount)
 {
     _transactionRepository.Save(new Transaction(amount, _time.GetTime(), TransactionType.Credit));
 }