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