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