public IActionResult GetTherapistUser(int id)
        {
            var user = _userRepo.GetById(id);

            if (user == null)
            {
                return(BadRequest());
            }
            try
            {
                return(Ok(_userRepo.GetUserTherapists(id).Select(t => Therapist.MapTherapistToTherapistDTO(t))));
            }
            catch (Exception)
            {
                return(StatusCode(500));
            }
        }