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