public async Task <IActionResult> GetSurveyQuestionsAsync(int surveyId, int userId)
        {
            var result = await _service.GetSurveyQuestionsAsync(surveyId, userId);

            return(Ok(result));
        }