Added Task Adding, Removing, Editing and corrected some relatex tests. Coverage still not 100%

This commit is contained in:
2025-12-03 19:08:16 +01:00
parent 4fa55c8607
commit 20daf315ca
68 changed files with 2398 additions and 400 deletions

View File

@@ -5,7 +5,9 @@ public class Task {
String description;
int taskId;
int workerId;
public Task(int taskId, int workerId, String name, String description) {
AssignmentManager manager;
public Task(int taskId, int workerId, String name, String description, AssignmentManager manager) {
this.manager = manager;
this.name = name;
this.description = description;
this.taskId = taskId;