Example #1
0
 public function addCategoria(GaleriaCategoria $gC)
 {
     if ($gC->getId() != '' && $this->getId() != '') {
         $con = BDConexao::__Abrir();
         $con->executar("INSERT INTO " . Sistema::$BDPrefixo . "relacionamento_galerias_categorias(galeria, categoria) VALUES('" . $this->getId() . "','" . $gC->getId() . "')");
     }
 }