public QuitIntent( IOleSettings settings, IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IServiceProvider provider) : base(optionSetFactory, responseFactory, settings) { Provider = provider; }
public DefaultIntent( ITextTranslatorWrapper translator, IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IOleSettings settings) : base(optionSetFactory, responseFactory, settings) { Translator = translator; }
public KickUserIntent( IAuthenticationWrapper authWrapper, IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IOleSettings settings) : base(optionSetFactory, responseFactory, settings) { AuthenticationWrapper = authWrapper; }
public VersionIntent( HttpContextBase context, IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IOleSettings settings) : base(optionSetFactory, responseFactory, settings) { Context = context; }
public RebuildIndexIntent( IContentSearchWrapper searchWrapper, IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IOleSettings settings) : base(optionSetFactory, responseFactory, settings) { ContentSearchWrapper = searchWrapper; }
protected BaseIntent( IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IOleSettings settings) { Settings = settings; ConversationResponseFactory = responseFactory; IntentOptionSetFactory = optionSetFactory; }
public LogoutIntent( HttpContextBase context, IAuthenticationWrapper authWrapper, IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IOleSettings settings) : base(optionSetFactory, responseFactory, settings) { Context = context; AuthenticationWrapper = authWrapper; }
public UnlockItemsIntent( IAuthenticationWrapper authWrapper, IContentSearchWrapper searchWrapper, IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IOleSettings settings) : base(optionSetFactory, responseFactory, settings) { AuthenticationWrapper = authWrapper; ContentSearchWrapper = searchWrapper; }
public GreetIntent( ITextTranslatorWrapper translator, IAuthenticationWrapper authWrapper, IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IOleSettings settings) : base(optionSetFactory, responseFactory, settings) { Translator = translator; AuthenticationWrapper = authWrapper; }
public VersionIntent( ITextTranslatorWrapper translator, HttpContextBase context, IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IOleSettings settings) : base(optionSetFactory, responseFactory, settings) { Translator = translator; Context = context; }
public AboutIntent( ITextTranslatorWrapper translator, IOleSettings settings, IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IServiceProvider provider) : base(optionSetFactory, responseFactory, settings) { Translator = translator; Provider = provider; }
public PublishIntent( IOleSettings settings, ISitecoreDataWrapper dataWrapper, IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IPublishWrapper publishWrapper) : base(optionSetFactory, responseFactory, settings) { DataWrapper = dataWrapper; PublishWrapper = publishWrapper; }
public LockedItemCountIntent( ITextTranslatorWrapper translator, IAuthenticationWrapper authWrapper, IContentSearchWrapper searchWrapper, IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IOleSettings settings) : base(optionSetFactory, responseFactory, settings) { Translator = translator; AuthenticationWrapper = authWrapper; ContentSearchWrapper = searchWrapper; }
public ThanksIntent( IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IOleSettings settings) : base(optionSetFactory, responseFactory, settings) { }
public ConversationResponseFactory(IIntentOptionSetFactory optionSetFactory) { IntentOptionSetFactory = optionSetFactory; }
public FrustratedUserIntent( IIntentOptionSetFactory optionSetFactory, IConversationResponseFactory responseFactory, IOleSettings settings) : base(optionSetFactory, responseFactory, settings) { }