Added Full Skeleton Methods for AssignmentManager and Task

This commit is contained in:
2025-12-03 18:21:53 +01:00
parent fb0e05fd4d
commit 4fa55c8607
3 changed files with 47 additions and 0 deletions

View File

@@ -1,4 +1,34 @@
package hhn.temp.project;
public class Task {
String name;
String description;
int taskId;
int workerId;
public Task(int taskId, int workerId, String name, String description) {
this.name = name;
this.description = description;
this.taskId = taskId;
this.workerId = workerId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public int getTaskId() {
return taskId;
}
public int getWorkerId() {
return workerId;
}
}