コード例 #1
0
 /// <summary>
 /// 构造函数
 /// </summary>
 public BProductCheckDetailBB()
 {
     this.selfConn = true;
     this.connection = new SqlConnection(HS.Config.SqlDataObject.GetSqlConnectionString);
     this.connection.Open();
     this.productCheckDetailDB = new BProductCheckDetailDB(this.connection);
 }
コード例 #2
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="connection">数据连接</param>
 public BProductCheckDetailBB(SqlConnection connection)
 {
     this.connection = connection;
     this.productCheckDetailDB = new BProductCheckDetailDB(connection);
 }
コード例 #3
0
        protected virtual void Dispose(bool disposing)
        {
            if (!disposing)
                return;

            if (this.selfConn)
            {
                this.connection.Close();
                this.connection.Dispose();
                this.connection = null;
            }
            if (this.productCheckDetailDB != null)
            {
                this.productCheckDetailDB.Dispose();
                this.productCheckDetailDB = null;
            }
        }