﻿
var arrValoresBusqueda=new Array();
function cModelo(codigo,nombre){
this.codigo=codigo;
this.nombre=nombre;
this.submodelos=new Array();
}
function cSubModelo(codigo,nombre){
this.codigo=codigo;
this.nombre=nombre;
this.categorias=new Array();
this.productos=new Array();
}
function cCategoria(codigo,nombre){
this.codigo=codigo;
this.nombre=nombre;
this.subcategorias=new Array();
this.productos=new Array();
}
function cSubCategoria(codigo,nombre){
this.codigo=codigo;
this.nombre=nombre;
this.productos=new Array();
}
function cProducto(codigo,nombre){
this.codigo=codigo;
this.nombre=nombre;
}