Ejemplo n.º 1
0
 public function alterar(Estado $obj)
 {
     $where = "WHERE " . self::ID . " = '" . $obj->getId() . "'";
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::PAIS, $obj->getPais()->getId(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::NOME, $obj->nome, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::UF, strtoupper($obj->uf), $where);
 }