Example #1
0
 public Bot(ConversationState conversationState, IEnumerable <ILUISeIntentHandler> intentHandlers, T dialog, QnAMakerBaseDialog qnADialog, WhatToWatchDialog whatToWatchDialog, WhoIsSHeDialog whoIsSHeDialog)
 {
     _conversationState = conversationState;
     _intentHandlers    = intentHandlers;
     _dialog            = dialog;
     _qnADialog         = qnADialog;
     _whatToWatchDialog = whatToWatchDialog;
     _whoIsSHeDialog    = whoIsSHeDialog;
 }
Example #2
0
 public LuisWhatToWatchIntentHandler(ConversationState conversationState, WhatToWatchDialog whatToWatchNowDialog)
 {
     _conversationState    = conversationState;
     _whatToWatchNowDialog = whatToWatchNowDialog;
 }