Esempio n. 1
0
 public function deletar(Cidade $obj)
 {
     $where = "WHERE " . self::ID . " = '" . $obj->getId() . "'";
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }