public ActionResult <IEnumerable <ActorDTO> > GetAllActorAvailable() { var list = _userRepo.GetAllActorAvailable().ToList(); return(Ok(list)); }