public PanelContent()
 {
     NewAppointment     = new Appointment();
     AppointmentService = new AppointmentsService();
     AppointmentService.Load();
     CurrentAppointments = new ObservableCollection <Appointment>();
     FillCurrentAppointments();
     AllPatientsAppointments = new ObservableCollection <CommandedAppointment>();
     FillAllAppointments();
 }