help me lord

This commit is contained in:
sageTheDM 2025-01-13 15:17:43 +01:00
parent b3d93010d6
commit 4a7f02c56f
4 changed files with 3456 additions and 1 deletions

View file

@ -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;
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff