public ApplicationServiceQuestion(IServiceQuestion ServiceQuestion
                                   , IApplicationServiceOption ApplicationServiceOption
                                   , IMapperQuestion MapperQuestion)
 {
     _serviceQuestion          = ServiceQuestion;
     _applicationServiceOption = ApplicationServiceOption;
     _mapperQuestion           = MapperQuestion;
 }
 public TamerTest(
     IServiceTest serviceTest,
     IServiceTheme serviceTheme,
     IServiceQuestion serviceQuestion)
 {
     _serviceTest     = serviceTest;
     _serviceTheme    = serviceTheme;
     _serviceQuestion = serviceQuestion;
 }
 public TestsServiceQuestion()
 {
     ServiceQuestion = new ServiceQuestion(
         Mapper,
         Context.Object,
         Logger.Object,
         ValidatorQuestion.Object,
         RepositoryTest.Object,
         RepositoryTheme.Object,
         RepositoryAnswer.Object,
         RepositoryProgram.Object,
         RepositoryQuestion.Object,
         RepositoryProgramData.Object,
         RepositoryQuestionMaterialAnchor.Object,
         QuestionValidatorFactory.Object);
 }
Exemple #4
0
 public QuestionController(IServiceQuestion servicequestion) =>
Exemple #5
0
 public TamerTheme(IServiceTheme serviceTheme, IServiceQuestion serviceQuestion)
 {
     _serviceTheme    = serviceTheme;
     _serviceQuestion = serviceQuestion;
 }
 public TamerQuestion(IServiceQuestion serviceQuestion)
 {
     _serviceQuestion = serviceQuestion;
 }