// Modela el carrito de la compra de Precocinados Corella.
function Clase_AudioVideosBean(){
	   // 
	   this.id_audiovideos = null;
	   // referencias
	   this.titulo = null;
	   // precios por producto
	   this.interpretes = null;
	   // ahorros por producto
	   this.director = null; 
	   // unidades por producto
       this.formato = null;
	   // peso neto por producto
       this.anio = null;
	   // alimento/no alimento 
       this.signatura = null;
	   // numero elementos
	   this.genero = null;
	   // Se recupera el producto i
	   this.descripcion = null;
	   // Se recupera el producto i
	   this.contador = null;
	   this.digitalizada = null;
	   
	   this.getIdAudioVideos = getIdAudioVideos;
	   this.setIdAudioVideos = setIdAudioVideos;
   
	   this.getTitulo = getTitulo;
	   this.setTitulo = setTitulo;

	   this.getInterpretes = getInterpretes;
	   this.setInterpretes = setInterpretes;

	   this.getDirector = getDirector;
	   this.setDirector = setDirector;

	   this.getFormato = getFormato;
	   this.setFormato = setFormato;

	   this.getAnio = getAnio;
	   this.setAnio = setAnio;

	   this.getSignatura = getSignatura;
	   this.setSignatura = setSignatura;

	   this.getGenero = getGenero;
	   this.setGenero = setGenero;

	   this.getDescripcion = getDescripcion;
	   this.setDescripcion = setDescripcion;

	   this.getContador = getContador;
	   this.setContador = setContador;
	   
	   this.getDigitalizada = getDigitalizada;
	   this.setDigitalizada = setDigitalizada;
}

function getIdAudioVideos(){
	return this.id_audiovideos;
}

function setIdAudioVideos(valor){
	this.id_audiovideos = valor;
}

function getTitulo(){
	return this.titulo;
}

function setTitulo(valor){
	this.titulo = valor;
}

function getInterpretes(){
	return this.interpretes;
}

function setInterpretes(valor){
	this.interpretes = valor;
}

function getDirector(){
	return this.director;
}

function setDirector(valor){
	this.director = valor;
}

function getFormato(){
	return this.formato;
}

function setFormato(valor){
	this.formato = valor;
}


function getAnio(){
	return this.anio;
}

function setAnio(valor){
	this.anio = valor;
}

function getSignatura(){
	return this.signatura;
}

function setSignatura(valor){
	this.signatura = valor;
}

function getGenero(){
	return this.genero;
}

function setGenero(valor){
	this.genero = valor;
}

function getContador(){
	return this.contador;
}

function setContador(valor){
	this.contador = valor;
}

function getDigitalizada(){
	return this.digitalizada;
}

function setDigitalizada(valor){
	this.digitalizada = valor;
}