public void Forward(Forward forward) { /* * if (!forwards.empty()) * getCurrentEmployeId ->> remove the task * * add the task to the forward */ forwards.Add(forward); }
public Task(String taskName, int taskId, Description description, Forward forward) : this(taskName, taskId) { descriptions.Add(description); forwards.Add(forward); }
public Task(String taskName, int taskId, Forward forward) : this(taskName, taskId) { forwards.Add(forward); }