help me lord
This commit is contained in:
parent
b3d93010d6
commit
4a7f02c56f
4 changed files with 3456 additions and 1 deletions
|
@ -21,5 +21,60 @@ public class Account {
|
|||
this.cityCode = cityCode;
|
||||
}
|
||||
|
||||
// Getters and setters...
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getSurname() {
|
||||
return surname;
|
||||
}
|
||||
|
||||
public void setSurname(String surname) {
|
||||
this.surname = surname;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getPhone() {
|
||||
return phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public String getStreet() {
|
||||
return street;
|
||||
}
|
||||
|
||||
public void setStreet(String street) {
|
||||
this.street = street;
|
||||
}
|
||||
|
||||
public String getCity() {
|
||||
return city;
|
||||
}
|
||||
|
||||
public void setCity(String city) {
|
||||
this.city = city;
|
||||
}
|
||||
|
||||
public String getCityCode() {
|
||||
return cityCode;
|
||||
}
|
||||
|
||||
public void setCityCode(String cityCode) {
|
||||
this.cityCode = cityCode;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Binary file not shown.
1700
Code/ost/JAVA-FX-PROJECT/hs_err_pid29590.log
Normal file
1700
Code/ost/JAVA-FX-PROJECT/hs_err_pid29590.log
Normal file
File diff suppressed because it is too large
Load diff
1700
Code/ost/JAVA-FX-PROJECT/hs_err_pid29914.log
Normal file
1700
Code/ost/JAVA-FX-PROJECT/hs_err_pid29914.log
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue