public void visualizarDocumento()
        {
            try
            {
                GEDServiceClient gedService = new GEDServiceClient();
                documentoSelected = gedService.selectDocumentoId(documentoSelected);

                string caminhoTemp = salvaArquivoTempLocal(documentoSelected.arquivo);
                System.Diagnostics.Process.Start(caminhoTemp);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        private void carregarDocumentoSelected()
        {
            try
            {
                GEDServiceClient gedService = new GEDServiceClient();
                documentoSelected = gedService.selectDocumentoId(documentoSelected);

                uriImagem = salvaArquivoTempLocal(documentoSelected.arquivo);

                if (documentoSelected.Assinado != null && documentoSelected.Assinado == "S")
                {
                    documentoSelected.Assinado = verificarAssinatura(documentoSelected.arquivo) ? "S" : "N";
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }