public TextAnalyzeMessageHandler(
     IParsedSentService parsedSentService,
     IGrammarFileAnalyzedService grammarFileAnalyzedService,
     EventHandlerMapper eventHandlerMapper)
 {
     _parsedSentService          = parsedSentService;
     _grammarFileAnalyzedService = grammarFileAnalyzedService;
     _eventHandlerMapper         = eventHandlerMapper;
 }
Exemplo n.º 2
0
 public UserMessageHandler(IUserInformationService userInformationService, EventHandlerMapper handlerMapper)
 {
     _userInformationService = userInformationService;
     _mapper = handlerMapper.Mapper;
 }