Exemple #1
0
 public BaseConnector(string providerName, string stringConnection)
     : this()
 {
     Connector = BaseDALConnector.Create(providerName, stringConnection);
     Connector.ThrowExceptions = this.ThrowExceptions;
 }
Exemple #2
0
 public BaseConnector(string stringConnectionSectionName)
     : this()
 {
     Connector = BaseDALConnector.Create(stringConnectionSectionName);
     Connector.ThrowExceptions = this.ThrowExceptions;
 }
Exemple #3
0
 public BaseConnector(Connection connection)
     : this()
 {
     Connector = BaseDALConnector.Create(connection.ProviderName, connection.ConnectionString);
     Connector.ThrowExceptions = this.ThrowExceptions;
 }