public static function getInstance()
 {
     if (self::$objInstance == null) {
         self::$objInstance = new NegFornecedorTelefone();
     }
     return self::$objInstance;
 }
 public function excluir($arrStrDados)
 {
     $obj = new Fornecedor();
     $obj->setId($arrStrDados["FOR_ID"][0]);
     //exclui os Telefones
     $arrDadosExcluirFone["FOR_ID"] = $obj->getId();
     NegFornecedorTelefone::getInstance()->excluir($arrDadosExcluirFone);
     //exclui os Emails
     $arrDadosExcluirEmails["FOR_ID"] = $obj->getId();
     NegFornecedorEmail::getInstance()->excluir($arrDadosExcluirEmails);
     return RepoFornecedor::getInstance()->excluir($obj);
 }
 public function excluirTelefoneFornecedor($arrStrFiltros)
 {
     return NegFornecedorTelefone::getInstance()->excluir($arrStrFiltros);
 }