public AnalyzationService() { conversationSubjectService = new ConversationSubjectService(); responseAnalyzationService = new ResponseAnalyzationService(); conversationTypeService = new ConversationTypeService(); userlessMessageService = new UserlessMessageService(); conversationReadingLevelService = new ConversationReadingLevelService(); responseSubjectService = new ResponseSubjectService(); }
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; }