// Modela el carrito de la compra de Precocinados Corella.
function Clase_UsuariosBean(){
	   // 
	   this.nombre_apellidos = null;
	   this.email = null;
	   this.password = null;
	   this.direccion = null; 
       this.telefono = null;
	   this.fax = null;
	   this.tema_investigacion = null;
	   this.consulta = null;
	   this.boletin = null;
	   this.id_usuario = null;
	   this.fecha = null;
	   
	   this.getNombreApellidos = getNombreApellidos;
	   this.setNombreApellidos = setNombreApellidos;
	   this.getEmail = getEmail;
	   this.setEmail = setEmail;
	   this.getPassword = getPassword;
	   this.setPassword = setPassword;
	   this.getDireccion = getDireccion;
	   this.setDireccion = setDireccion;
	   this.getTelefono = getTelefono;
	   this.setTelefono = setTelefono;
	   this.getFax = getFax;
	   this.setFax = setFax;
	   this.getTemaInvestigacion = getTemaInvestigacion;
	   this.setTemaInvestigacion = setTemaInvestigacion;
	   this.getConsulta = getConsulta;
	   this.setConsulta = setConsulta;
	   this.getBoletin = getBoletin;
	   this.setBoletin = setBoletin;
	   this.getIdUsuario = getIdUsuario;
	   this.setIdUsuario = setIdUsuario;
	   this.getFecha = getFecha;
	   this.setFecha = setFecha;
}

function getNombreApellidos(){
	return this.nombre_apellidos;
}

function setNombreApellidos(valor){
	this.nombre_apellidos = valor;
}

function getEmail(){
	return this.email;
}

function setEmail(valor){
	this.email = valor;
}

function getPassword(){
	return this.password;
}

function setPassword(valor){
	this.password = valor;
}

function getDireccion(){
	return this.direccion;
}

function setDireccion(valor){
	this.direccion = valor;
}

function getTelefono(){
	return this.telefono;
}

function setTelefono(valor){
	this.telefono = valor;
}

function getFax(){
	return this.fax;
}

function setFax(valor){
	this.fax = valor;
}

function getTemaInvestigacion(){
	return this.tema_investigacion;
}

function setTemaInvestigacion(valor){
	this.tema_investigacion = valor;
}

function getConsulta(){
	return this.consulta;
}

function setConsulta(valor){
	this.consulta = valor;
}

function getBoletin(){
	return this.boletin;
}

function setBoletin(valor){
	this.boletin = valor;
}

function getIdUsuario(){
	return this.id_usuario;
}

function setIdUsuario(valor){
	this.id_usuario = valor;
}

function getFecha(){
	return this.fecha;
}

function setFecha(valor){
	this.fecha = valor;
}

