Created
May 8, 2023 12:09
-
-
Save jeffersonchaves/4cbf37fbc54084dce0bf3e6eac64e794 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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