public static string Guardar_Ubicacion
        (
            //Panel Ubicacion
            int Auto_Ubicacion, int Idproducto, int Idbodega, string Bodega, string Ubicacion, string Estante, string Nivel
        )
        {
            Conexion_Producto Datos = new Conexion_Producto();
            Entidad_Productos Obj   = new Entidad_Productos();

            //Panel Ubicacion
            Obj.Auto_Ubicacion = Auto_Ubicacion;
            Obj.Idproducto     = Idproducto;
            Obj.Idbodega       = Idbodega;
            Obj.Bodega         = Bodega;
            Obj.Ubicacion      = Ubicacion;
            Obj.Estante        = Estante;
            Obj.Nivel          = Nivel;

            return(Datos.Guardar_Ubicacion(Obj));
        }