/// <summary> /// ���캯�� /// </summary> public MBusinessBB() { this.selfConn = true; this.connection = new SqlConnection(HS.Config.SqlDataObject.GetSqlConnectionString); this.connection.Open(); this.businessDB = new MBusinessDB(this.connection); }
/// <summary> /// ���캯�� /// </summary> /// <param name="connection">��������</param> public MBusinessBB(SqlConnection connection) { this.connection = connection; this.businessDB = new MBusinessDB(connection); }
protected virtual void Dispose(bool disposing) { if (!disposing) return; if (this.selfConn) { this.connection.Close(); this.connection.Dispose(); this.connection = null; } if (this.businessDB != null) { this.businessDB.Dispose(); this.businessDB = null; } }