public Customer(String firstName, String lastName, Address addr, String phone, String email)
this.firstName = firstName;
this.lastName = lastName;
address = addr;
this.phone = phone;
this.email = email;
currentRentals = new HashSet();
transactionHistory = new ArrayList();
|