Esempio n. 1
0
 public InternalSettingsRepository(
     CofoundryDbContext dbContext,
     ISettingCache settingsCache
     )
 {
     _dbContext     = dbContext;
     _settingsCache = settingsCache;
 }
Esempio n. 2
0
 public UpdateSeoSettingsCommandHandler(
     CofoundryDbContext dbContext,
     SettingCommandHelper settingCommandHelper,
     ISettingCache settingCache
     )
 {
     _settingCommandHelper = settingCommandHelper;
     _dbContext            = dbContext;
     _settingCache         = settingCache;
 }
 public MarkAsSetUpCommandHandler(
     CofoundryDbContext dbContext,
     SettingCommandHelper settingCommandHelper,
     ISettingCache settingCache,
     IPermissionValidationService permissionValidationService
     )
 {
     _dbContext    = dbContext;
     _settingCache = settingCache;
     _permissionValidationService = permissionValidationService;
 }
Esempio n. 4
0
 public UpdateSeoSettingsCommandHandler(
     CofoundryDbContext dbContext,
     SettingCommandHelper settingCommandHelper,
     ISettingCache settingCache,
     ITransactionScopeManager transactionScopeFactory
     )
 {
     _settingCommandHelper    = settingCommandHelper;
     _dbContext               = dbContext;
     _settingCache            = settingCache;
     _transactionScopeFactory = transactionScopeFactory;
 }
Esempio n. 5
0
 public UpdateVisualEditorSettingsCommandHandler(
     CofoundryDbContext dbContext,
     SettingCommandHelper settingCommandHelper,
     ISettingCache settingCache,
     IPermissionValidationService permissionValidationService
     )
 {
     _settingCommandHelper        = settingCommandHelper;
     _dbContext                   = dbContext;
     _settingCache                = settingCache;
     _permissionValidationService = permissionValidationService;
 }
Esempio n. 6
0
 public UpdateGeneralSiteSettingsCommandHandler(
     CofoundryDbContext dbContext,
     SettingCommandHelper settingCommandHelper,
     ISettingCache settingCache,
     IAutoUpdateService autoUpdateService
     )
 {
     _settingCommandHelper = settingCommandHelper;
     _dbContext            = dbContext;
     _settingCache         = settingCache;
     _autoUpdateService    = autoUpdateService;
 }
Esempio n. 7
0
 public MarkAsSetUpCommandHandler(
     CofoundryDbContext dbContext,
     SettingCommandHelper settingCommandHelper,
     ISettingCache settingCache,
     IPermissionValidationService permissionValidationService,
     ITransactionScopeManager transactionScopeFactory
     )
 {
     _dbContext    = dbContext;
     _settingCache = settingCache;
     _permissionValidationService = permissionValidationService;
     _transactionScopeFactory     = transactionScopeFactory;
 }
 public UpdateGeneralSiteSettingsCommandHandler(
     CofoundryDbContext dbContext,
     SettingCommandHelper settingCommandHelper,
     ISettingCache settingCache,
     IAutoUpdateService autoUpdateService,
     ITransactionScopeManager transactionScopeFactory
     )
 {
     _settingCommandHelper    = settingCommandHelper;
     _dbContext               = dbContext;
     _settingCache            = settingCache;
     _autoUpdateService       = autoUpdateService;
     _transactionScopeFactory = transactionScopeFactory;
 }
 internal RetrieveAllDbAppSettingManager(ISettingCacheProviderFactory settingCacheProviderFactory, ISettingCache settingCache)
 {
     _settingCacheProviderFactory = settingCacheProviderFactory;
     SettingCacheInstance         = settingCache;
 }
 internal LazyLoadDbAppSettingManager(ISettingCacheProviderFactory settingCacheProviderFactory, ISettingCache settingCache)
 {
     _settingCacheProviderFactory = settingCacheProviderFactory;
     SettingCacheInstance         = settingCache;
 }