Esempio n. 1
0
 public FullTextRepository(IFullTextProvider fullTextProvider, DataContextOptions dataContextOptions, RepositoryOptions options) : base(dataContextOptions, options)
 {
     FullText = fullTextProvider;
 }
Esempio n. 2
0
 public FullTextRepository(IDataContext <ISession> context, IFullTextProvider fullTextProvider)
     : base(context)
 {
     FullText = fullTextProvider;
 }
Esempio n. 3
0
 public FullTextRepository(IFullTextProvider fullTextProvider, IDataContext <DbContext> dataContext, RepositoryOptions options) : base(dataContext, options)
 {
     FullText = fullTextProvider;
 }