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