public TextAnalyzeMessageHandler(
     IParsedSentService parsedSentService,
     IGrammarFileAnalyzedService grammarFileAnalyzedService,
     EventHandlerMapper eventHandlerMapper)
 {
     _parsedSentService          = parsedSentService;
     _grammarFileAnalyzedService = grammarFileAnalyzedService;
     _eventHandlerMapper         = eventHandlerMapper;
 }
예제 #2
0
 public GrammarFileAnalyzedController(
     IGrammarFileAnalyzedService grammarFileAnalyzedService,
     IParsedSentService parsedSentService,
     WebMapper webMapper)
 {
     _grammarFileAnalyzedService = grammarFileAnalyzedService;
     _parsedSentService          = parsedSentService;
     _mapper = webMapper.Mapper;
 }
 public TaskGenerationService(
     ITaskGenerationRepository taskGenerationRepository,
     ApplicationMapper applicationMapper,
     IParsedSentService parsedSentService,
     ITaskItemService taskItemService,
     ITaskItemsGeneratorFactory taskItemsGeneratorFactory)
 {
     _taskGenerationRepository = taskGenerationRepository;
     _mapper                    = applicationMapper.Mapper;
     _parsedSentService         = parsedSentService;
     _taskItemService           = taskItemService;
     _taskItemsGeneratorFactory = taskItemsGeneratorFactory;
 }