コード例 #1
0
        public ActionResult <IEnumerable <ActorDTO> > GetAllActorAvailable()
        {
            var list = _userRepo.GetAllActorAvailable().ToList();

            return(Ok(list));
        }