コード例 #1
0
 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();
 }
コード例 #2
0
 public Customer()
 {
     customerID = "";
     password   = "";
     firstName  = "";
     lastName   = "";
     address    = "";
     email      = "";
     db         = new DBAccess();
     acctList   = new AccountList();
 }