Example #1
0
 public Query(SearchEngine searchEngine, IVocabulary vocabulary, ITokinizer tokinizer, IDocumentStorage documentStorage)
 {
     _searchEngine    = searchEngine;
     _vocabulary      = vocabulary;
     _tokinizer       = tokinizer;
     _documentStorage = documentStorage;
 }
Example #2
0
 public SearchFactory(IBlobRepository blobRepository, IVocabulary vocabulary, IDocumentStorage documentStorage, ITokinizer tokinizer)
 {
     _blobRepository  = blobRepository;
     _vocabulary      = vocabulary;
     _documentStorage = documentStorage;
     _tokinizer       = tokinizer;
 }
 public SearchEngine(IVocabulary vocabulary, IDocumentStorage documentStorage, ITokinizer tokinizer)
 {
     _vocabulary      = vocabulary;
     _documentStorage = documentStorage;
     _tokinizer       = tokinizer;
 }
 public Sentencezer(ITokinizer tokinizer)
 {
     _tokinizer = tokinizer;
 }
 public IrtRetSearch(IVocabulary vocabulary, IDocumentStorage documentStorage, ITokinizer tokinizer)
 {
     _vocabulary      = vocabulary;
     _documentStorage = documentStorage;
     _tokinizer       = tokinizer;
 }