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