def cargar_bebestibles(self):
        conn = Conexion()

        for bebestible in conn.getBebestibles():
            bebida = Bebestible()
            bebida.id_bebestible = bebestible[0]
            bebida.nombre_bebestible = bebestible[1]
            bebida.precio = bebestible[2]
            json = {
                "id_bebestible": bebida.id_bebestible,
                "nombre_bebestible": bebida.nombre_bebestible,
                "precio": bebida.precio
            }
            self.bebestibles.append(json)
        return self.bebestibles
    def buscar_bebestible(self, id_bebestible):
        conn = Conexion()

        for bebestible in conn.getBebestibles():
            b = Bebestible()
            if bebestible[0] == id_bebestible:
                b.id_bebestible = bebestible[0]
                b.nombre_bebestible = bebestible[1]
                b.precio = bebestible[2]
                json = {
                    "id_bebestible": b.id_bebestible,
                    "nombre_bebestible": b.nombre_bebestible,
                    "precio": b.precio
                }
        return json