Example #1
0
 public void Fill()
 {
     using (var repo = new IndexableRepository <T>(thisRepo.context, thisRepo.log))
     {
         repo.IndexAll();
     }
 }
Example #2
0
 public void Purge()
 {
     using (var repo = new IndexableRepository <T>(thisRepo.context, thisRepo.log))
     {
         repo.PurgeAllIndex();
     }
 }