Datasets:
ArXiv:
License:
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package courseworkapp; | |
/** | |
* | |
* @author Евгений | |
*/ | |
public class BankCustomer { | |
String customerName; | |
String address; | |
String email; | |
Account account; | |
public String getCustomerName() { | |
return customerName; | |
} | |
public void setCustomerName(String customerName) { | |
this.customerName = customerName; | |
} | |
public String getAddress() { | |
return address; | |
} | |
public void setAddress(String address) { | |
this.address = address; | |
} | |
public String getEmail() { | |
return email; | |
} | |
public void setEmail(String email) { | |
this.email = email; | |
} | |
public Account getAccount() { | |
return account; | |
} | |
public void setAccount(Account account) { | |
this.account = account; | |
} | |
} | |