public ActionResult ExcluirDocumento(int documentoId)
 {
     try
     {
         _documentosService.ExcluirDocumento(documentoId);
         return(Json("Documento excluido com sucesso!", JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         throw new HttpException(ex.Message);
     }
 }