Example #1
0
 public HomeController(ISimpleDataService simpleDataService)
 {
     _simpleDataService = simpleDataService;
 }
Example #2
0
 public SimpleDataIndexer(IIndexCriteria indexerData, Lucene.Net.Store.Directory luceneDirectory, Analyzer analyzer, ISimpleDataService dataService, IEnumerable<string> indexTypes, bool async)
     : base(indexerData, luceneDirectory, analyzer, async)
 {
     DataService = dataService;
     IndexTypes = indexTypes;
 }
Example #3
0
 public SimpleDataIndexer(IIndexCriteria indexerData, Lucene.Net.Store.Directory luceneDirectory, Analyzer analyzer, ISimpleDataService dataService, IEnumerable <string> indexTypes, bool async)
     : base(indexerData, luceneDirectory, analyzer, async)
 {
     DataService = dataService;
     IndexTypes  = indexTypes;
 }
Example #4
0
 public SimpleDataIndexer(IIndexCriteria indexerData, DirectoryInfo workingFolder, Analyzer analyzer, ISimpleDataService dataService, IEnumerable<string> indexTypes, bool async)
     : base(indexerData, workingFolder, analyzer, async)
 {
     DataService = dataService;
     IndexTypes = indexTypes;
 }
Example #5
0
 public SimpleDataIndexer(IIndexCriteria indexerData, DirectoryInfo workingFolder, Analyzer analyzer, ISimpleDataService dataService, IEnumerable <string> indexTypes, bool async)
     : base(indexerData, workingFolder, analyzer, async)
 {
     DataService = dataService;
     IndexTypes  = indexTypes;
 }