
// Modela el carrito de la compra del Centro de Documentacion
function Clase_Informacion(){
	   // productos
	   this.id_denominacion = 0;
	   this.denominacion_origen_pais = null;
	   this.explicacion = null;
	   this.explicacion_en = null;
	   this.info_bodegas = null;
	   
	   this.getId = getId;
	   this.setId = setId;
	   this.getDen = getDen;
	   this.setDen = setDen;
	   this.getExp = getExp;
	   this.setExp = setExp;
	   this.getExpEn = getExpEn;
	   this.setExpEn = setExpEn;
	   this.getInfoB = getInfoB;
	   this.setInfoB = setInfoB;
}

function getId(){
	return this.id_denominacion;
}
function setId(valor){
	 this.id_denominacion = valor;
}

function getDen(){
	return this.denominacion_origen_pais;
}
function setDen(valor){
	 this.denominacion_origen_pais = valor;
}

function getExp(){
	  return this.explicacion;
}
function setExp(valor){
	 this.explicacion = valor;
}

function getExpEn(){
	  return this.explicacion_en;
}
function setExpEn(valor){
	 this.explicacion_en = valor;
}

function getInfoB(){
	  return this.info_bodegas;
}
function setInfoB(valor){
	 this.info_bodegas = valor;
}