public ResponseService() { conversationMatchService = new ConversationMatchService(new ConversationMatcher.Services.BestMatchService()); userPropertyMatchService = new UserPropertyMatchService(new UserService.UserPropertyRetrievalService(), new UserService.BotPropertyRetrievalService()); lyricsService = new LyricsMatchService(); googleService = new GoogleMatchService.GoogleMatchService(); urbanDictionaryService = new UrbanDictionaryMatchService(); salutationService = new SalutationService(); responseConversionService = new ResponseConversionService(new UserService.UserPropertyService(), new UserService.PropertyValueService()); }
public ResponseService(ConversationMatchService conversationMatchService, UserPropertyMatchService userPropertyMatchService, LyricsMatchService lyricsService, GoogleMatchService.GoogleMatchService googleService, UrbanDictionaryMatchService urbanDictionaryService, SalutationService salutationService, ResponseConversionService responseConversionService) { _conversationMatchService = conversationMatchService; _userPropertyMatchService = userPropertyMatchService; _lyricsService = lyricsService; _googleService = googleService; _urbanDictionaryService = urbanDictionaryService; _salutationService = salutationService; _responseConversionService = responseConversionService; }