public IActionResult GetTherapist(int id)
        {
            Therapist t = _therapistRepo.GetById(id);

            if (t == null)
            {
                return(NotFound());
            }

            return(Ok(Therapist.MapTherapistToGetTherapistDetailsDTO(t)));
        }