private function Execute()
 {
     $this->Connect();
     try {
         $this->Create->execute($this->Dados);
         $this->Result = $this->Conn->lastInsertId();
     } catch (PDOException $e) {
         $this->Result = null;
         JBErro("<b>Erro ao Cadastrar:</b> {$e->getMessage()}", $e->getCode());
     }
 }
 private function Execute()
 {
     $this->Connect();
     try {
         $this->Delete->execute($this->Places);
         $this->Result = true;
     } catch (PDOException $e) {
         $this->Result = null;
         JBErro("<b>Erro ao Deletar:</b> {$e->getMessage()}", $e->getCode());
     }
 }
 public function excluir($produtoId = null)
 {
     try {
         $delete = new Delete();
         $delete->ExeDelete('produtos', "WHERE id = :id", "id={$produtoId}");
         if (is_null($produtoId)) {
             throw new Exception('Digite um id para o produto', E_USER_ERROR);
         } else {
             if ($delete->getRowCount() < 1) {
                 throw new Exception('Não existe um produto com esse ID!', E_USER_ERROR);
             } else {
                 JBErro('<p>Produto deletado com Sucesso!</p>', JB_ACCEPT);
             }
         }
     } catch (Exception $e) {
         JBErro("<b>Erro ao Deletar:</b> {$e->getMessage()}", $e->getCode());
     }
 }