Exemplo n.º 1
0
 public TwitterSettingsStore(
     IDictionaryStore dictionaryStore,
     ILogger <TwitterSettingsStore> logger,
     ICacheManager cacheManager)
 {
     _dictionaryStore = dictionaryStore;
     _cacheManager    = cacheManager;
     _logger          = logger;
 }
Exemplo n.º 2
0
 public FacebookSettingsStore(
     IDictionaryStore dictionaryStore,
     ILogger <FacebookSettingsStore> logger,
     ICacheManager cacheManager)
 {
     _dictionaryStore = dictionaryStore;
     _cacheManager    = cacheManager;
     _logger          = logger;
 }
Exemplo n.º 3
0
 public HttpsSettingsStore(
     IDictionaryStore dictionaryStore,
     ILogger <HttpsSettingsStore> logger,
     IMemoryCache memoryCache)
 {
     _dictionaryStore = dictionaryStore;
     _logger          = logger;
     _memoryCache     = memoryCache;
 }
Exemplo n.º 4
0
 public AttachmentSettingsStore(
     ILogger <AttachmentSettingsStore> logger,
     IDictionaryStore dictionaryStore,
     ICacheManager cacheManager)
 {
     _dictionaryStore = dictionaryStore;
     _cacheManager    = cacheManager;
     _logger          = logger;
 }
Exemplo n.º 5
0
 public PlatoSiteSettingsStore(
     IDictionaryStore dictionaryStore,
     ILogger <PlatoSiteSettingsStore> logger,
     ICacheManager cacheManager)
 {
     _dictionaryStore = dictionaryStore;
     _cacheManager    = cacheManager;
     _logger          = logger;
 }
Exemplo n.º 6
0
 public TourDescriptorStore(
     ILogger <TourDescriptorStore> logger,
     IDictionaryStore dictionaryStore,
     ICacheManager cacheManager)
 {
     _dictionaryStore = dictionaryStore;
     _cacheManager    = cacheManager;
     _logger          = logger;
 }
Exemplo n.º 7
0
 public GitHubSettingsStore(
     IDictionaryStore dictionaryStore,
     ILogger <GitHubSettingsStore> logger,
     ICacheManager cacheManager)
 {
     _dictionaryStore = dictionaryStore;
     _cacheManager    = cacheManager;
     _logger          = logger;
 }
Exemplo n.º 8
0
 public ReCaptchaSettingsStore(
     IDictionaryStore dictionaryStore,
     ILogger <ReCaptchaSettingsStore> logger,
     IMemoryCache memoryCache,
     ICacheManager cacheManager)
 {
     _dictionaryStore = dictionaryStore;
     _cacheManager    = cacheManager;
     _logger          = logger;
 }
Exemplo n.º 9
0
 public DictionaryManager(IDictionaryStore dictionaryStore,
                          IOptions <DictionaryOptions> options,
                          ISignal signal)
 {
     DictionaryStore = dictionaryStore;
     Signal          = signal;
     if (options.Value.Injects != null)
     {
         InjectDictionaries = options.Value.Injects.ToList();
     }
 }
Exemplo n.º 10
0
 public ShellDescriptorStore(
     IShellFeatureStore <ShellFeature> shellFeatureStore,
     ILogger <ShellDescriptorStore> logger,
     IDictionaryStore dictionaryStore,
     ICacheManager cacheManager)
 {
     _shellFeatureStore = shellFeatureStore;
     _dictionaryStore   = dictionaryStore;
     _cacheManager      = cacheManager;
     _logger            = logger;
 }
Exemplo n.º 11
0
 public SiteSettingsStore(
     ILogger <SiteSettingsStore> logger,
     IDictionaryStore dictionaryStore,
     ICacheManager cacheManager,
     IKeyGenerator keyGenerator)
 {
     _dictionaryStore = dictionaryStore;
     _keyGenerator    = keyGenerator;
     _cacheManager    = cacheManager;
     _logger          = logger;
 }
 public TextToPhoneticsService(IDictionaryStore dictionaryStore)
 {
     _dictionaryStore = dictionaryStore;
 }