
//
function Clase_Producto(){
	   // productos
	   this.id_producto = 0;
	   this.tipo = 0;
	   this.nombre_producto = null;
	   this.variedades = null;
	   this.crianza = null;
	   this.grado = null;
	   this.produccion = null;
	   this.formato = null;
	   this.descripcion_producto = null;
	   this.descripcion_producto_en = null;
	   this.maridaje = null;
	   this.temperatura_consumo = null;
	   this.imagen = null;
	   this.enlace = null;
	   this.cata = null;
	   this.premios = null;
	   this.envejecimiento = null;
	   this.madurez = null;
	   
	   
	   this.getIdProducto = getIdProducto;
	   this.setIdProducto = setIdProducto;
	   
	   this.getTipo = getTipo;
	   this.setTipo = setTipo;
	  
	   this.getNombreProducto = getNombreProducto;
	   this.setNombreProducto = setNombreProducto;
	   
	   
	   this.getVariedades = getVariedades;
	   this.setVariedades = setVariedades;
	   
	  
	   this.getCrianza = getCrianza;
	   this.setCrianza = setCrianza;

	   this.getGrado = getGrado;
	   this.setGrado = setGrado;
	   
	  
	   this.getProduccion = getProduccion;
	   this.setProduccion = setProduccion;
	   
	   this.getFormato = getFormato;
	   this.setFormato = setFormato;
	   
	  
	   this.getDescripcionProducto = getDescripcionProducto;
	   this.setDescripcionProducto = setDescripcionProducto;
	   
	   
	   this.getDescripcionProductoEn = getDescripcionProductoEn;
	   this.setDescripcionProductoEn = setDescripcionProductoEn;
	   
	   this.getMaridaje = getMaridaje;
	   this.setMaridaje = setMaridaje;
	   
	   
	   this.getTemperatura = getTemperatura;
	   this.setTemperatura = setTemperatura;
	   
	   this.getImagen = getImagen;
	   this.setImagen = setImagen;
	   
	   this.getEnlace = getEnlace;
	   this.setEnlace = setEnlace;
	   
	   this.getCata = getCata;
	   this.setCata = setCata;
	   
	   this.getPremios = getPremios;
	   this.setPremios = setPremios;
	   
	   this.getEnvejecimiento = getEnvejecimiento;
	   this.setEnvejecimiento = setEnvejecimiento;
	   
	   this.getMadurez = getMadurez;
	   this.setMadurez = setMadurez;
	   
}

function getIdProducto(){
			return this.id_producto;
}
function setIdProducto(valor){
			 this.id_producto = valor;
}


function getTipo(){
			return this.tipo;
}
function setTipo(valor){
			 this.tipo = valor;
}
		
function getNombreProducto(){
	return this.nombre_producto;
}

function setNombreProducto(valor){
	this.nombre_producto = valor;
}

function getVariedades(){
	return this.variedades;
}

function setVariedades(valor){
	this.variedades = valor;
}

function getCrianza(){
	return this.crianza;
}
function setCrianza(valor){
	this.crianza = valor;
}

function getGrado(){
		return this.grado;
}
function setGrado(valor){
	this.grado = valor;
}

function getProduccion(){
	return this.produccion;
}
function setProduccion(valor){
	this.produccion = valor;
}

function getFormato(){
	return this.formato;
}

function setFormato(valor){
	this.formato = valor;
}

function getDescripcionProducto(){
	return this.descripcion_producto;
}

function setDescripcionProducto(valor){
	this.descripcion_producto = valor;
}

function getDescripcionProductoEn(){
	return this.descripcion_producto_en;
}
function setDescripcionProductoEn(valor){
	this.descripcion_producto_en = valor;
}

function getMaridaje(){
	return this.maridaje;
}
		
function setMaridaje(valor){
	this.maridaje = valor;
}

function getTemperatura(){
	return this.temperatura_consumo;
}
function setTemperatura(valor){
	this.temperatura_consumo = valor;
}

function getImagen(){
	return this.imagen;
}
function setImagen(valor){
	this.imagen = valor;
}

function getEnlace(){
	return this.enlace;
}

function setEnlace(valor){
	this.enlace = valor;
}

function getCata(){
	return this.cata;
}

function setCata(valor){
	this.cata = valor;
}

function getPremios(){
	return this.premios;
}

function setPremios(valor){
	this.premios = valor;
}

function getEnvejecimiento(){
	return this.envejecimiento;
}

function setEnvejecimiento(valor){
	this.envejecimiento = valor;
}

function getMadurez(){
	return this.madurez;
}

function setMadurez(valor){
	this.madurez = valor;
}