예제 #1
0
        private List<Question> loadQuestionData(string username, Subject subject, Department department)
        {
            List<Question> questionList;
            IQuestionDao questionDao = new QuestionDaoImpl();

            questionList = questionDao.findQuestion(username, subject, department);

            return questionList;
        }