first commit
This commit is contained in:
18
Code/EmployeeCategory.java
Normal file
18
Code/EmployeeCategory.java
Normal file
@@ -0,0 +1,18 @@
|
||||
public class EmployeeCategory {
|
||||
|
||||
private int categoryID;
|
||||
private String categoryName;
|
||||
public int getCategoryID() {
|
||||
return categoryID;
|
||||
}
|
||||
public void setCategoryID(int categoryID) {
|
||||
this.categoryID = categoryID;
|
||||
}
|
||||
public String getCategoryName() {
|
||||
return categoryName;
|
||||
}
|
||||
public void setCategoryName(String categoryName) {
|
||||
this.categoryName = categoryName;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user