public SkinsAdminController(
     SkinsAdminService skinsAdminService,
     IDynamicConfigCache dynamicConfigCache,
     IServiceProvider serviceProvider) : base(serviceProvider)
 {
     this.dynamicConfigCache = dynamicConfigCache;
     this.skinsAdminService  = skinsAdminService;
 }
 public SkinsAdminController(
     SkinsAdminService skinsAdminService,
     IDynamicConfigCache dynamicConfigCache,
     IOptionsMonitor <AdminOptions> adminOptions,
     IServiceProvider serviceProvider) : base(serviceProvider)
 {
     this.dynamicConfigCache = dynamicConfigCache;
     this.skinsAdminService  = skinsAdminService;
     this.adminOptions       = adminOptions;
 }
 public ConfigurationAdminController(
     IConfigurationAdminManager configurationAdminManager,
     ConfigurationAdminService configurationAdminService,
     IConfigurationAdminPresenter configurationAdminPresenter,
     IConfigurationRoot configurationRoot,
     IDynamicConfigCache dynamicConfigCache,
     IHostingEnvironment env,
     IServiceProvider serviceProvider) : base(serviceProvider)
 {
     this.env = env;
     this.dynamicConfigCache          = dynamicConfigCache;
     this.configurationRoot           = configurationRoot;
     this.ConfigurationAdminManager   = configurationAdminManager;
     this.configurationAdminService   = configurationAdminService;
     this.ConfigurationAdminPresenter = configurationAdminPresenter;
 }
Beispiel #4
0
 public CacheAdminController(
     IComponentsCache componentsCache,
     ICategoriesCache categoriesCache,
     IMenuCache menuCache,
     SpamProtectionCache spamProtectionCache,
     IMailTemplatesCache mailTemplatesCache,
     IConfigurationRoot configurationRoot,
     IDynamicConfigCache dynamicConfigCache,
     IServiceProvider serviceProvider) : base(serviceProvider)
 {
     this.componentsCache     = componentsCache;
     this.categoriesCache     = categoriesCache;
     this.menuCache           = menuCache;
     this.spamProtectionCache = spamProtectionCache;
     this.mailTemplatesCache  = mailTemplatesCache;
     this.configurationRoot   = configurationRoot;
     this.dynamicConfigCache  = dynamicConfigCache;
 }
Beispiel #5
0
 public ConfigurationController(
     IDynamicConfigCache dynamicConfigCache,
     IServiceProvider serviceProvider) : base(serviceProvider)
 {
     this.dynamicConfigCache = dynamicConfigCache;
 }