public IActionResult DoesDoctorHaveAnAppointmentAtSpecificTime(int doctorId)
 {
     return(Ok(ViewAppointmentAdapter.AppointmentListToViewAppointmenDtoList(regularAppointmentService.GetAppointmentsForDoctor(doctorId))));
 }