public IActionResult GetAllSpecialists()
        {
            IEnumerable <DoctorDTO> docDtos = _doctorService.GetAllSpecialists();

            if (docDtos != null)
            {
                return(Ok(docDtos));
            }
            return(BadRequest("Specialists not found."));
        }