コード例 #1
0
        public IActionResult Index()
        {
            QuestionRepo    repo     = new QuestionRepo();
            List <Question> question = repo.GetAllQuestions();

            return(View(question));
        }