/// <summary> /// 构造函数 /// </summary> public LWorkPlatformBB() { this.selfConn = true; this.connection = new SqlConnection(HS.Config.SqlDataObject.GetSqlConnectionString); this.connection.Open(); this.workPlatformDB = new LWorkPlatformDB(this.connection); }
/// <summary> /// 构造函数 /// </summary> /// <param name="connection">数据连接</param> public LWorkPlatformBB(SqlConnection connection) { this.connection = connection; this.workPlatformDB = new LWorkPlatformDB(connection); }
protected virtual void Dispose(bool disposing) { if (!disposing) return; if (this.selfConn) { this.connection.Close(); this.connection.Dispose(); this.connection = null; } if (this.workPlatformDB != null) { this.workPlatformDB.Dispose(); this.workPlatformDB = null; } }