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