You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package _3._1;
|
|
|
|
public class Customer extends BankUser {
|
|
|
|
|
|
private Account[] accounts;
|
|
|
|
|
|
public Account[] getAccounts() {
|
|
return accounts;
|
|
}
|
|
|
|
public void setAccounts(Account[] accounts) {
|
|
this.accounts = accounts;
|
|
}
|
|
|
|
|
|
}
|