Ejemplo n.º 1
0
 public HomeController(ISimpleDataService simpleDataService)
 {
     _simpleDataService = simpleDataService;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }