private void FillCurrentAppointments()
        {
            var currentAppointments = AppointmentService.GetCurrentAppointments();

            CurrentAppointments.Clear();
            CurrentAppointments.AddRange(currentAppointments);
        }