Ejemplo n.º 1
0
 /// <summary>
 /// 构造函数
 /// </summary>
 public CSaleBill_HangHaoBB()
 {
     this.selfConn = true;
     this.connection = new SqlConnection(HS.Config.SqlDataObject.GetSqlConnectionString);
     this.connection.Open();
     this.saleBill_HangHaoDB = new CSaleBill_HangHaoDB(this.connection);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="connection">数据连接</param>
 public CSaleBill_HangHaoBB(SqlConnection connection)
 {
     this.connection = connection;
     this.saleBill_HangHaoDB = new CSaleBill_HangHaoDB(connection);
 }
Ejemplo n.º 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.saleBill_HangHaoDB != null)
            {
                this.saleBill_HangHaoDB.Dispose();
                this.saleBill_HangHaoDB = null;
            }
        }