}
public boolean addAppointment(User user, Date startTime, Date endTime,
String title, String notes, AppointmentState status, Boolean visible) {
Appointment appointment = new Appointment(startTime,
endTime, title, notes, status, visible);
return addAppointmentToUser(appointment, user);
// Appointment should be added