Example #1
0
 public QuestionService(IUnitOfWork UnitOfWork, IMapper Mapper, IQuestionToQuestionModel QuestionToQuestionModel, IAnswerService answerService)
 {
     this.UnitOfWork = UnitOfWork;
     this.mapper     = Mapper;
     this.QuestionToQuestionModel = QuestionToQuestionModel;
     this.answerService           = answerService;
 }
Example #2
0
 public KnowledgeResultToKnowledgeResultModel(IMapper Mapper, IQuestionToQuestionModel questionToQuestionModel, IUnitOfWork unitOfWork)
 {
     this.Mapper = Mapper;
     this.questionToQuestionModel = questionToQuestionModel;
     this.unitOfWork = unitOfWork;
 }
 public KnowledgeToKnowledgeModel(IMapper Mapper, IQuestionToQuestionModel questionToQuestionModel)
 {
     this.Mapper = Mapper;
     this.questionToQuestionModel = questionToQuestionModel;
 }