execute method
Adds a task to the given column.
Notifies listeners with a TaskAddedEvent when successful.
Parameters:
column: The column to add the task totask: The task to be added
Implementation
void execute(KanbanColumn column, Task task) {
column.addTask(task);
EventNotifier().notify(TaskAddedEvent(task, column));
}