Esempio n. 1
0
 public LuceneService(LuceneSharedResourcesService resources,
                      ArchiveService archive,
                      IOptionsMonitor <LuceneServiceOptions> options)
 {
     _rootPath  = options.CurrentValue.RootPath;
     _archive   = archive;
     _resources = resources;
 }
Esempio n. 2
0
 public RestoreService(ArchiveService archive,
                       LuceneService lucene,
                       IOptionsMonitor <RestoreServiceOptions> options)
 {
     _archive = archive;
     _lucene  = lucene;
     _options = options.CurrentValue;
 }