Beispiel #1
0
 public function addCategoria(BannerCategoria $bC)
 {
     if ($bC->getId() != '' && $this->getId() != '') {
         $con = BDConexao::__Abrir();
         $con->executar("INSERT INTO " . Sistema::$BDPrefixo . "relacionamento_banners_categorias(banner, categoria) VALUES('" . $this->getId() . "','" . $bC->getId() . "')");
     }
 }