| 1234567891011121314151617181920212223242526 |
- package rocks.zipcode.quiz3a.collections;
-
- import rocks.zipcode.quiz3a.objectorientation.BankAccount;
-
- import java.util.List;
-
- /**
- * @author leon on 27/12/2018.
- */
- public class Bank {
- public List<BankAccount> getBankAccounts() {
- return null;
- }
-
- public void setBankAccounts(List<BankAccount> bankAccounts) {
- }
-
- public BankAccount findBankAccountById(Long id) {
- return null;
- }
-
- public BankAccount removeBankAccount(Long id) {
- return null;
- }
- }
|