Files
bankbankatm/Code/EmployeeCategory.java
Ali Can Zeybek 72514365eb first commit
2025-01-09 20:02:51 +03:00

19 lines
377 B
Java

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