Beispiel #1
0
 public ExamPaperQuestionService(IExamPaperQuestionRepository examPaperQuestionRepository, IUnitOfWork unitOfWork)
 {
     this.examPaperQuestionRepository = examPaperQuestionRepository;
     this.unitOfWork = unitOfWork;
 }
Beispiel #2
0
 public QuestionRepository(IDbFactory dbFactory, IQuestionCategoryRepository questionCategory, IExamPaperQuestionRepository examPaperQuestionRepository, IUserRepository userRepository) : base(dbFactory)
 {
     this.questionCategory            = questionCategory;
     this.examPaperQuestionRepository = examPaperQuestionRepository;
     this.userRepository = userRepository;
 }