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