示例#1
0
 public MongoFhirIndex(MongoIndexStore store, Definitions definitions)
 {
     this.definitions = definitions;
     this.indexStore = store;
     this.indexer = new MongoIndexer(store, definitions);
     this.searcher = new MongoSearcher(store.Collection);
 }
示例#2
0
 public MongoFhirIndex(MongoIndexStore indexStore, MongoIndexer indexer, MongoSearcher searcher)
 {
     _indexStore = indexStore;
     _indexer = indexer;
     _searcher = searcher;
 }