Exemplo n.º 1
0
        public IActionResult GetAllQuestions()
        {
            List <SurveyQuestion>    allQuestions     = _surveyService.GetAllActiveQuestions().ToList();
            List <SurveyQuestionDTO> allQuestionsDTOs = SurveyMapper.ListActiveQuestionsToListSurveyQuestionDTO(allQuestions);

            return(Ok(allQuestionsDTOs));
        }