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