Beispiel #1
0
 public AnalyzationService()
 {
     conversationSubjectService      = new ConversationSubjectService();
     responseAnalyzationService      = new ResponseAnalyzationService();
     conversationTypeService         = new ConversationTypeService();
     userlessMessageService          = new UserlessMessageService();
     conversationReadingLevelService = new ConversationReadingLevelService();
     responseSubjectService          = new ResponseSubjectService();
 }
Beispiel #2
0
 public AnalyzationService(ConversationSubjectService conversationSubjectService, ResponseAnalyzationService responseAnalyzationService, ConversationTypeService conversationTypeService, UserlessMessageService userlessMessageService, ConversationReadingLevelService conversationReadingLevelService, ResponseSubjectService responseSubjectService, NaturalLanguageApiService naturalLanguageApiService)
 {
     _conversationSubjectService      = conversationSubjectService;
     _responseAnalyzationService      = responseAnalyzationService;
     _conversationTypeService         = conversationTypeService;
     _userlessMessageService          = userlessMessageService;
     _conversationReadingLevelService = conversationReadingLevelService;
     _responseSubjectService          = responseSubjectService;
     _naturalLanguageApiService       = naturalLanguageApiService;
 }