public void populateEmployeeComboBox(Organisation organization) {
    employeeJComboBox.removeAllItems();

    for (Person p : organization.getPersonDirectory().getPersonList()) {
      employeeJComboBox.addItem(p);
    }
  }