public List <CENFabricante> ListaFabricante(int flag)
        {
            try
            {
                List <CENFabricante> Listfabricante = new List <CENFabricante>();
                CADProducto          fabricante     = new CADProducto();

                Listfabricante = fabricante.ListarFabricante(flag);
                return(Listfabricante);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }