public function deletar(PedidoEnderecoEntrega $end)
 {
     //parent::deletar($end);
     $where = "WHERE " . self::ID . " = '" . $end->getId() . "'";
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }