public bool read()
        {
            CADProducto cad = new CADProducto();

            return(cad.read(this));
        }
        public bool update()
        {
            CADProducto cad = new CADProducto();

            return(cad.update(this));
        }
        public bool delete()
        {
            CADProducto cad = new CADProducto();

            return(cad.delete(this));
        }
        public bool create()
        {
            CADProducto cad = new CADProducto();

            return(cad.create(this));
        }