public DefaultIntent(
     ITextTranslatorWrapper translator,
     IIntentOptionSetFactory optionSetFactory,
     IConversationResponseFactory responseFactory,
     IOleSettings settings) : base(optionSetFactory, responseFactory, settings)
 {
     Translator = translator;
 }
 public RebuildIndexIntent(
     ITextTranslatorWrapper translator,
     IContentSearchWrapper searchWrapper,
     IIntentOptionSetFactory optionSetFactory,
     IConversationResponseFactory responseFactory,
     IOleSettings settings) : base(optionSetFactory, responseFactory, settings)
 {
     Translator           = translator;
     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 LogoutIntent(
     ITextTranslatorWrapper translator,
     HttpContextBase context,
     IAuthenticationWrapper authWrapper,
     IIntentOptionSetFactory optionSetFactory,
     IConversationResponseFactory responseFactory,
     IOleSettings settings) : base(optionSetFactory, responseFactory, settings)
 {
     Translator            = translator;
     Context               = context;
     AuthenticationWrapper = authWrapper;
 }
Beispiel #7
0
 public PublishIntent(
     ITextTranslatorWrapper translator,
     IOleSettings settings,
     ISitecoreDataWrapper dataWrapper,
     IIntentOptionSetFactory optionSetFactory,
     IConversationResponseFactory responseFactory,
     IPublishWrapper publishWrapper) : base(optionSetFactory, responseFactory, settings)
 {
     Translator     = translator;
     DataWrapper    = dataWrapper;
     PublishWrapper = publishWrapper;
 }
Beispiel #8
0
 public LockedItemCountIntent(
     ITextTranslatorWrapper translator,
     IAuthenticationWrapper authWrapper,
     IContentSearchWrapper searchWrapper,
     IIntentOptionSetFactory optionSetFactory,
     IConversationResponseFactory responseFactory,
     IOleSettings settings) : base(optionSetFactory, responseFactory, settings)
 {
     Translator            = translator;
     AuthenticationWrapper = authWrapper;
     ContentSearchWrapper  = searchWrapper;
 }