public Customer(String customerID, String password, String firstName, String lastName, String address, String email) { this.customerID = customerID; this.password = password; this.firstName = firstName; this.lastName = lastName; this.address = address; this.email = email; db = new DBAccess(); acctList = new AccountList(); }
public Customer() { customerID = ""; password = ""; firstName = ""; lastName = ""; address = ""; email = ""; db = new DBAccess(); acctList = new AccountList(); }