function Part(partid,partdescription,nplVal,nplblkVal,nplrefVal,nplpartrefseqVal,qtyVal,serfrVal,sertoVal,price,currency) {
	this.partId = partid;
	this.partDescription = partdescription;
	this.npl = nplVal;
	this.nplblk = nplblkVal;
	this.nplref = nplrefVal;
	this.nplpartrefseq = nplpartrefseqVal;
	this.qty = qtyVal;
	this.serfr = serfrVal;
	this.serto = sertoVal;
	this.price = price;
	this.currency = currency;
}

