Example #1
0
 internal SqlCompactDataStore(IDataConnection Connection, IExecuteDatabaseCommand ExecuteCommands, ITypeInformationParser TypeInformationParser)
     : base(Connection, ExecuteCommands, TypeInformationParser)
 {
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DataStore"/> class.
 /// </summary>
 /// <param name="Connection">The data connection.</param>
 /// <param name="ExecuteComamands">The command executor.</param>
 /// <param name="TypeParser">The type parser.</param>
 public DataStore(IDataConnection Connection, IExecuteDatabaseCommand ExecuteComamands, ITypeInformationParser TypeParser)
     : this(Connection)
 {
     this.ExecuteCommands       = ExecuteComamands;
     this.TypeInformationParser = TypeParser;
 }