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