first commit

This commit is contained in:
Ali Can Zeybek
2025-01-09 20:02:51 +03:00
commit 72514365eb
55 changed files with 1285 additions and 0 deletions

27
Code/Employee.java Normal file
View File

@@ -0,0 +1,27 @@
import java.util.Date;
public class Employee extends Person {
private int employeeID;
private Date joined;
public int getEmployeeID() {
return employeeID;
}
public void setEmployeeID(int employeeID) {
this.employeeID = employeeID;
}
public Date getJoined() {
return joined;
}
public void setJoined(Date joined) {
this.joined = joined;
}
public int getCategory() {
return Category;
}
public void setCategory(int category) {
Category = category;
}
private int Category;
}