Ejemplo n.º 1
0
 public EmailSettingsSubscriber(
     ITourDescriptorStore tourDescriptorStore,
     IBroker broker)
 {
     _tourDescriptorStore = tourDescriptorStore;
     _broker = broker;
 }
Ejemplo n.º 2
0
 public FeatureSubscriber(
     ITourDescriptorStore tourDescriptorStore,
     IBroker broker)
 {
     _tourDescriptorStore = tourDescriptorStore;
     _broker = broker;
 }
Ejemplo n.º 3
0
 public TourProgressViewComponent(
     ITourDescriptorStore tourDescriptorStore,
     IOptions <TourOptions> tourOptions)
 {
     _tourDescriptorStore = tourDescriptorStore;
     _tourOptions         = tourOptions.Value;
 }
Ejemplo n.º 4
0
 public TourOptionsConfiguration(
     ITourDescriptorStore tourDescriptorStore,
     ILogger <TourOptionsConfiguration> logger)
 {
     _tourDescriptorStore = tourDescriptorStore;
     _logger = logger;
 }
Ejemplo n.º 5
0
 public AdminIndexViewProvider(
     ITourDescriptorStore tourDescriptorStore,
     IOptions <TourOptions> tourOptions)
 {
     _tourDescriptorStore = tourDescriptorStore;
     _tourOptions         = tourOptions.Value;
 }
Ejemplo n.º 6
0
        public AdminController(
            IHtmlLocalizer htmlLocalizer,
            IStringLocalizer stringLocalizer,
            IViewProviderManager <FeaturesIndexViewModel> viewProvider,
            IShellDescriptorManager shellDescriptorManager,
            IAuthorizationService authorizationService,
            ITourDescriptorStore tourDescriptorStore,
            IShellFeatureManager shellFeatureManager,
            IShellSettings shellSettings,
            IPlatoHost platoHost,
            IAlerter alerter)
        {
            _shellDescriptorManager = shellDescriptorManager;
            _authorizationService   = authorizationService;
            _shellFeatureManager    = shellFeatureManager;
            _tourDescriptorStore    = tourDescriptorStore;
            _shellSettings          = shellSettings;
            _viewProvider           = viewProvider;
            _platoHost = platoHost;
            _alerter   = alerter;

            T = htmlLocalizer;
            S = stringLocalizer;
        }