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