Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
Binary file added src/.DS_Store
Binary file not shown.
Binary file added src/main/.DS_Store
Binary file not shown.
Binary file added src/main/java/.DS_Store
Binary file not shown.
Binary file added src/main/java/nl/.DS_Store
Binary file not shown.
Binary file added src/main/java/nl/sogyo/.DS_Store
Binary file not shown.
Binary file added src/main/java/nl/sogyo/boilerplate/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ public interface AccountService {
public List<SavingsAccount> getSavingsAccounts();
public SavingsAccount getSavingsAccount(int accountId);
public void createSavingsAccount(SavingsAccount savingsAccount);
public void updateSavingsAccount(int accountId, SavingsAccount savingsAccount);
public void updateSavingsAccount123(int accountId, SavingsAccount savingsAccount);
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ public List<SavingsAccount> getSavingsAccounts() {
return savingsAccountDAO.loadSavingsAccounts();
}

@Override
public SavingsAccount getSavingsAccount(int accountId) {
logger.debug("getSavingsAccount()");
SavingsAccount savingsAccount = savingsAccountDAO.getSavingsAccount(accountId);
return savingsAccount;
}
@Override
public SavingsAccount getSavingsAccount(int accountId) {
logger.debug("getSavingsAccount()");
Expand Down