Exemplo n.º 1
0
 public AutomaticFeatureMigrations(
     IShellFeatureUpdater shellFeatureUpdater,
     IShellFeatureStore <ShellFeature> shellFeatureStore)
 {
     _shellFeatureUpdater = shellFeatureUpdater;
     _shellFeatureStore   = shellFeatureStore;
 }
Exemplo n.º 2
0
 public FeatureFacade(
     IShellFeatureStore <ShellFeature> shellFeatureStore,
     IShellDescriptorManager shellDescriptorManager)
 {
     _shellFeatureStore      = shellFeatureStore;
     _shellDescriptorManager = shellDescriptorManager;
 }
Exemplo n.º 3
0
 public ShellFeatureUpdater(
     IShellFeatureStore <ShellFeature> shellFeatureStore,
     IShellDescriptorManager shellDescriptorManager,
     IShellDescriptorStore shellDescriptorStore,
     IHttpContextAccessor httpContextAccessor,
     IShellContextFactory shellContextFactory,
     IDataMigrationBuilder migrationBuilder,
     IRunningShellTable runningShellTable,
     IOptions <PlatoOptions> platoOptions,
     ILogger <ShellFeatureUpdater> logger,
     IFeatureFacade featureFacade,
     IPlatoHost platoHost)
 {
     _platoOptions           = platoOptions;
     _featureFacade          = featureFacade;
     _migrationBuilder       = migrationBuilder;
     _shellDescriptorManager = shellDescriptorManager;
     _shellDescriptorStore   = shellDescriptorStore;
     _shellFeatureStore      = shellFeatureStore;
     _httpContextAccessor    = httpContextAccessor;
     _shellContextFactory    = shellContextFactory;
     _runningShellTable      = runningShellTable;
     _platoHost = platoHost;
     _logger    = logger;
 }
Exemplo n.º 4
0
 public FeatureEventHandler(
     ISchemaBuilder schemaBuilder,
     IShellFeatureStore <ShellFeature> shellFeatureStore,
     IDefaultRolesManager defaultRolesManager)
 {
     _schemaBuilder       = schemaBuilder;
     _shellFeatureStore   = shellFeatureStore;
     _defaultRolesManager = defaultRolesManager;
 }
Exemplo n.º 5
0
 public SearchController(
     IShellFeatureStore <ShellFeature> shellFeatureStore,
     IContextFacade contextFacade,
     ITagStore <TagBase> tagStore)
 {
     _shellFeatureStore = shellFeatureStore;
     _contextFacade     = contextFacade;
     _tagStore          = tagStore;
 }
Exemplo n.º 6
0
 public ShellDescriptorStore(
     IShellFeatureStore <ShellFeature> shellFeatureStore,
     ILogger <ShellDescriptorStore> logger,
     IDictionaryStore dictionaryStore,
     ICacheManager cacheManager)
 {
     _shellFeatureStore = shellFeatureStore;
     _dictionaryStore   = dictionaryStore;
     _cacheManager      = cacheManager;
     _logger            = logger;
 }
Exemplo n.º 7
0
 public ShellFeatureUpdater(
     IShellFeatureStore <ShellFeature> shellFeatureStore,
     IShellDescriptorManager shellDescriptorManager,
     IShellDescriptorStore shellDescriptorStore,
     IShellContextFactory shellContextFactory,
     IDataMigrationBuilder migrationBuilder,
     IOptions <PlatoOptions> platoOptions,
     ILogger <ShellFeatureUpdater> logger,
     IFeatureFacade featureFacade,
     IShellSettings shellSettings,
     IPlatoHost platoHost)
 {
     _shellDescriptorManager = shellDescriptorManager;
     _shellDescriptorStore   = shellDescriptorStore;
     _shellContextFactory    = shellContextFactory;
     _shellFeatureStore      = shellFeatureStore;
     _migrationBuilder       = migrationBuilder;
     _shellSettings          = shellSettings;
     _featureFacade          = featureFacade;
     _platoOptions           = platoOptions;
     _platoHost = platoHost;
     _logger    = logger;
 }