Skip to content

Instantly share code, notes, and snippets.

@jeffersonchaves
Created May 8, 2023 12:09
Show Gist options
  • Save jeffersonchaves/4cbf37fbc54084dce0bf3e6eac64e794 to your computer and use it in GitHub Desktop.
Save jeffersonchaves/4cbf37fbc54084dce0bf3e6eac64e794 to your computer and use it in GitHub Desktop.
public class Seller {
private String Id;
private String name;
private String email;
private LocalDate birthDate;
private Double BaseSalary;
//private Department department;
public String getId() {
return Id;
}
public void setId(String id) {
Id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public LocalDate getBirthDate() {
return birthDate;
}
public void setBirthDate(LocalDate birthDate) {
this.birthDate = birthDate;
}
public Double getBaseSalary() {
return BaseSalary;
}
public void setBaseSalary(Double baseSalary) {
BaseSalary = baseSalary;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment