// Modela el carrito de la compra de Precocinados Corella.
function Clase_LibrosRevistasBean(){
	   // 
	   this.id_librosrevistas = null;
	   // referencias
	   this.autor = null;
	   // precios por producto
	   this.titulo = null;
	   // ahorros por producto
	   this.edicion_editorial_anio = null; 
	   // unidades por producto
       this.descripcion = null;
	   // peso neto por producto
       this.coleccion = null;
	   // alimento/no alimento 
       this.isbn = null;
	   // numero elementos
	   this.materias = null;
	   // Se recupera el producto i
	   this.contador = null;
	   this.digitalizada = null;
	   this.n_incunable = null;
	   
	   this.getIdLibrosRevistas = getIdLibrosRevistas;
	   this.setIdLibrosRevistas = setIdLibrosRevistas;
	   this.getAutor = getAutor;
	   this.setAutor = setAutor;
	   this.getTitulo = getTitulo;
	   this.setTitulo = setTitulo;
	   this.getEdicionEditorialAnio = getEdicionEditorialAnio;
	   this.setEdicionEditorialAnio = setEdicionEditorialAnio;
	   this.getDescripcion = getDescripcion;
	   this.setDescripcion = setDescripcion;
	   this.getColeccion = getColeccion;
	   this.setColeccion = setColeccion;
	   this.getIsbn = getIsbn;
	   this.setIsbn = setIsbn;
	   this.getMaterias = getMaterias;
	   this.setMaterias = setMaterias;
	   this.getContador = getContador;
	   this.setContador = setContador;
	   this.getDigitalizada = getDigitalizada;
	   this.setDigitalizada = setDigitalizada;
	   this.getIncunable = getIncunable;
	   this.setIncunable = setIncunable;
}

function getIdLibrosRevistas(){
	return this.id_librosrevistas;
}

function setIdLibrosRevistas(valor){
	this.id_librosrevistas = valor;
}

function getAutor(){
	return this.autor;
}

function setAutor(valor){
	this.autor = valor;
}

function getTitulo(){
	return this.titulo;
}

function setTitulo(valor){
	this.titulo = valor;
}

function getEdicionEditorialAnio(){
	return this.edicion_editorial_anio;
}

function setEdicionEditorialAnio(valor){
	this.edicion_editorial_anio = valor;
}

function getDescripcion(){
	return this.descripcion;
}

function setDescripcion(valor){
	this.descripcion = valor;
}

function getColeccion(){
	return this.coleccion;
}

function setColeccion(valor){
	this.coleccion = valor;
}

function getIsbn(){
	return this.isbn;
}

function setIsbn(valor){
	this.isbn = valor;
}

function getMaterias(){
	return this.materias;
}

function setMaterias(valor){
	this.materias = valor;
}

function getContador(){
	return this.contador;
}

function setContador(valor){
	this.contador = valor;
}

function getDigitalizada(){
	return this.digitalizada;
}

function setDigitalizada(valor){
	this.digitalizada = valor;
}

function getIncunable(){
	return this.n_incunable;
}

function setIncunable(valor){
	this.n_incunable = valor;
}
