Esempio n. 1
0
 function set(Foto $foto)
 {
     $parametrosSet = array();
     $parametrosSet["idautor"] = $foto->getIdautor();
     $parametrosSet["titulo"] = $foto->getTitulo();
     $parametrosSet["categoria"] = $foto->getCategoria();
     $parametrosSet["fecha"] = $foto->getFecha();
     $parametrosSet["rutafoto"] = $foto->getRuta();
     $parametrosWhere = array();
     $parametrosWhere["id"] = $foto->getID();
     return $this->bd->update($this->tabla, $parametrosSet, $parametrosWhere);
 }