public NpgsqlSettingsSchemaProvider(ISettingsSchemaStorage storage)
        {
            if (storage == null) throw new ArgumentNullException(nameof(storage));

            _storage = storage;
        } 
Exemplo n.º 2
0
 public Schemas(ISettingsSchemaStorage storage)
 {
     _storage = storage;
 }