return account.getBalance();
}
public BigDecimal depositIntoAccount(int id, BigDecimal amount) {
Account account = dao.findAccountById(id);
account.deposit(amount);
dao.updateAccount(account);
return account.getBalance();
}
public BigDecimal withdrawFromAccount(int id, BigDecimal amount) {