Пример #1
0
 public AdminViewProvider(
     ISearchSettingsStore <SearchSettings> searchSettingsStore,
     IFullTextCatalogStore fullTextCatalogStore,
     IFullTextIndexStore fullTextIndexStore,
     IPlatoHost platoHost,
     IShellSettings shellSettings)
 {
     _searchSettingsStore  = searchSettingsStore;
     _fullTextCatalogStore = fullTextCatalogStore;
     _fullTextIndexStore   = fullTextIndexStore;
     _shellSettings        = shellSettings;
     _platoHost            = platoHost;
 }
Пример #2
0
 public FullTextCatalogManager(
     IFullTextCatalogCommand <SchemaFullTextCatalog> fullTextCatalogCommand,
     IFullTextIndexCommand <SchemaFullTextIndex> fullTextIndexCommand,
     IFullTextIndexManager fullTextIndexManager,
     IShellSettings shellSettings,
     IFullTextIndexStore fullTextIndexStore,
     IConstraintStore constraintStore)
 {
     _fullTextCatalogCommand = fullTextCatalogCommand;
     _fullTextIndexCommand   = fullTextIndexCommand;
     _fullTextIndexManager   = fullTextIndexManager;
     _shellSettings          = shellSettings;
     _fullTextIndexStore     = fullTextIndexStore;
     _constraintStore        = constraintStore;
 }