// Modela el carrito de la compra de Precocinados Corella.
function Clase_MonedasBean(){
	   // 
	   this.id_moneda = null;
	   // referencias
	   this.numero_pieza = null;
	   // precios por producto
	   this.valor = null;
	   // ahorros por producto
	   this.material = null; 
	   // unidades por producto
       this.dimensiones = null;
	   // peso neto por producto
       this.peso = null;
	   // alimento/no alimento 
       this.ejes = null;
	   // numero elementos
	   this.pais = null;
	   // Se recupera el producto i
	   this.gobernante = null;
	   //
	   this.banco = null;
	   //
	   this.cronologia = null;
	   //
	   this.tipo_anverso = null;
	   //
	   this.tipo_reverso = null;
	   //
	   this.leyenda_reverso = null;
	   //
	   this.leyenda_anverso = null;
	   //
	   this.catalogacion = null;
	   //
	   this.estado_conservacion = null;
	   //
	   this.contador = null;
	   this.digitalizada = null;
	   
	   this.getIdMonedas = getIdMonedas;
	   this.setIdMonedas = setIdMonedas;
	  
	   this.getNumeroPieza = getNumeroPieza;
	   this.setNumeroPieza = setNumeroPieza;
	  
	   this.getValor = getValor;
	   this.setValor = setValor;
	 
	   this.getMaterial = getMaterial;
	   this.setMaterial = setMaterial;
	 
	   this.getDimensiones = getDimensiones;
	   this.setDimensiones = setDimensiones;
	  
	   this.getPeso = getPeso;
	   this.setPeso = setPeso;
	   
	   this.getEjes = getEjes;
	   this.setEjes = setEjes;
	   
	   this.getPais = getPais;
	   this.setPais = setPais;
	   
	   this.getGobernante = getGobernante;
	   this.setGobernante = setGobernante;
	   
	   this.getBanco = getBanco;
	   this.setBanco = setBanco;
	  
	   this.getCronologia = getCronologia;
	   this.setCronologia = setCronologia;
	  
	   this.getTipoAnverso = getTipoAnverso;
	   this.setTipoAnverso = setTipoAnverso;
	  
	   this.getTipoReverso = getTipoReverso;
	   this.setTipoReverso = setTipoReverso;
	  
	   this.getLeyendaReverso = getLeyendaReverso;
	   this.setLeyendaReverso = setLeyendaReverso;
	   
	   this.getLeyendaAnverso = getLeyendaAnverso;
	   this.setLeyendaAnverso = setLeyendaAnverso;
	  
	   this.getCatalogacion = getCatalogacion;
	   this.setCatalogacion = setCatalogacion;
	   
	   this.getEstadoConservacion = getEstadoConservacion;
	   this.setEstadoConservacion = setEstadoConservacion;

	   this.getContador = getContador;
	   this.setContador = setContador;
	   
	   this.getDigitalizada = getDigitalizada;
	   this.setDigitalizada = setDigitalizada;
}


function getIdMonedas(){
	return this.id_moneda;
}
		
function setIdMonedas(valor){
	this.id_moneda = valor;
}

function getNumeroPieza(){
	return this.numero_pieza;
}
		
function setNumeroPieza(valor){
	this.numero_pieza = valor;
}


function getValor(){
	return this.valor;
}
		
function setValor(valor1){
	this.valor = valor1;
}

function getMaterial(){
	return this.material;
}
		
function setMaterial(valor){
	this.material = valor;
}


function getDimensiones(){
	return this.dimensiones;
}
		
function setDimensiones(valor){
	this.dimensiones = valor;
}

function getPeso(){
	return this.peso;
}
		
function setPeso(valor){
	this.peso = valor;
}

function getEjes(){
	return this.ejes;
}
		
function setEjes(valor){
	this.ejes = valor;
}


function getPais(){
	return this.pais;
}
		
function setPais(valor){
	this.pais = valor;
}


function getGobernante(){
	return this.gobernante;
}
		
function setGobernante(valor){
	this.gobernante = valor;
}


function getBanco(){
	return this.banco;
}
		
function setBanco(valor){
	this.banco = valor;
}


function getCronologia(){
	return this.cronologia;
}
		
function setCronologia(valor){
	this.cronologia = valor;
}

function getTipoAnverso(){
	return this.tipo_anverso;
}

function setTipoAnverso(valor){
	this.tipo_anverso = valor;
}


function getTipoReverso(){
	return this.tipo_reverso;
}
		
function setTipoReverso(valor){
	this.tipo_reverso = valor;
}

function getLeyendaReverso(){
	return this.leyenda_reverso;
}
		
function setLeyendaReverso(valor){
	this.leyenda_reverso = valor;
}

function getLeyendaAnverso(){
	return this.leyenda_anverso;
}
		
function setLeyendaAnverso(valor){
	this.leyenda_anverso = valor;
}

function getCatalogacion(){
	return this.catalogacion;
}
		
function setCatalogacion(valor){
	this.catalogacion = valor;
}

function getEstadoConservacion(){
	return this.estado_conservacion;
}
function setEstadoConservacion(valor){
	this.estado_conservacion = valor;
}

function getContador(){
	return this.contador;
}

function setContador(valor){
	this.contador = valor;
}

function getDigitalizada(){
	return this.digitalizada;
}

function setDigitalizada(valor){
	this.digitalizada = valor;
}