Пример #1
0
        public ActionResult Index()
        {
            BaseEfUnitOfWork content = new CodeFirstContext();
            LuceneIndexingService Service = new LuceneIndexingService(content);
            Service.UpdateIndex();

            return View();
        }
Пример #2
0
 public LuceneIndexingService(IUnitOfWork entitiesContext)
 {
     _entitiesContext = (CodeFirstContext)entitiesContext;
 }
Пример #3
0
 public void TestMethod3()
 {
     BaseEfUnitOfWork content = new CodeFirstContext();
     LuceneIndexingService Service = new LuceneIndexingService(content);
     Service.UpdateIndex();
 }