internal DALContext(MySqlConnection ExistingConnection, MySqlTransaction SqlTransaction = null) { _currentContext = new DALContextHelper(ExistingConnection, SqlTransaction: SqlTransaction); }
internal DALContext(Enum ConnectionStringType, bool AllowUserVariables = false, bool AutomaticallyOpenConnection = true) { _currentContext = new DALContextHelper(ConnectionStringType, AllowUserVariables: AllowUserVariables, AutomaticallyOpenConnection: AutomaticallyOpenConnection); }