public void Configure(IQueryControllerConfiguration config)
 {
     _reader           = config.Reader;
     _storage          = config.Storage;
     _readerParameters = config.ReaderParameters;
     _resolver         = config.Resolver;
     _expressions      = config.ExpressionEngine;
 }
Пример #2
0
 public SchemaController(IStoreSchemaStorage schemaStorage, SchemaTableDesignController tableController, IDataMigrationManager migrationManager,
                         IMigrationAggregator migrationAggregator, IBuilderRuleFactory <ISchemaBuilderRule, DesignSchema> builderRuleFactory)
 {
     _schemaStorage       = schemaStorage;
     _tableController     = tableController;
     _migrationManager    = migrationManager;
     _migrationAggregator = migrationAggregator;
     _builderRuleFactory  = builderRuleFactory;
 }
 public JsonStoreSchemaReader(IStoreSchemaStorage schemaStorage)
 {
     _schemaStorage = schemaStorage;
 }