summaryrefslogtreecommitdiff
path: root/Gestor.Model/Model.Common/Relatorio.cs
diff options
context:
space:
mode:
authorLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:38:18 +0000
committerLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:38:18 +0000
commit1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (patch)
treee1c3b20ea08f0cf71122a1e73f0d395f8fd83874 /Gestor.Model/Model.Common/Relatorio.cs
parent674ca83ba9243a9e95a7568c797668dab6aee26a (diff)
downloadgestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz
gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip
chore: location
Diffstat (limited to 'Gestor.Model/Model.Common/Relatorio.cs')
-rw-r--r--Gestor.Model/Model.Common/Relatorio.cs132
1 files changed, 0 insertions, 132 deletions
diff --git a/Gestor.Model/Model.Common/Relatorio.cs b/Gestor.Model/Model.Common/Relatorio.cs
deleted file mode 100644
index 700754d..0000000
--- a/Gestor.Model/Model.Common/Relatorio.cs
+++ /dev/null
@@ -1,132 +0,0 @@
-using Gestor.Model.Attributes;
-using Gestor.Model.Converter;
-using System;
-using System.ComponentModel;
-
-namespace Gestor.Model.Common
-{
- [TypeConverter(typeof(EnumDescriptionTypeConverter))]
- public enum Relatorio
- {
- [Description("RELATÓRIO DE CLIENTE")]
- [OldValue("1000")]
- [Tipo("CLIENTE")]
- Cliente,
- [Description("RELATÓRIO DE ANIVERSARIANTE")]
- [OldValue("1001")]
- [Tipo("CLIENTE")]
- Aniversariante,
- [Description("RELATÓRIO DE PRODUÇÃO")]
- [OldValue("1002")]
- [Tipo("DOCUMENTO")]
- Producao,
- [Description("RELATÓRIO DE APÓLICES PENDENTES")]
- [OldValue("1003")]
- [Tipo("DOCUMENTO")]
- ApolicePendente,
- [Description("RELATÓRIO DE RENOVAÇÕES")]
- [OldValue("1004")]
- [Tipo("DOCUMENTO")]
- Renovacao,
- [Description("RELATÓRIO DE RECEBIMENTO DE COMISSÃO")]
- [OldValue("1005")]
- [Tipo("PARCELA")]
- Comissao,
- [Description("RELATÓRIO DE COMISSÃO A RECEBER")]
- [OldValue("1006")]
- [Tipo("PARCELA")]
- Pendente,
- [Description("RELATÓRIO DE PAGAMENTO DE VENDEDOR")]
- [OldValue("1007")]
- [Tipo("PARCELA")]
- Pagamento,
- [Description("RELATÓRIO DE AUDITORIA DE COMISSÃO")]
- [OldValue("1008")]
- [Tipo("FECHAMENTO")]
- Auditoria,
- [Description("RELATÓRIO DE SINISTRO PENDENTE")]
- [OldValue("1009")]
- [Tipo("SINISTRO")]
- SinistroPendente,
- [Description("RELATÓRIO DE SINISTRO")]
- [OldValue("1010")]
- [Tipo("SINISTRO")]
- Sinistro,
- [Description("RELATÓRIO DE FECHAMENTO")]
- [OldValue("1011")]
- [Tipo("FECHAMENTO")]
- Fechamento,
- [Description("RELATÓRIO DE FATURAS PENDENTES")]
- [OldValue("1012")]
- [Tipo("PARCELA")]
- FaturaPendente,
- [Description("RELATÓRIO DE EXTRATOS BAIXADOS NO PERIODO")]
- [OldValue("1013")]
- [Tipo("EXTRATO")]
- ExtratosBaixados,
- [Description("RELATÓRIO DE METAS DE SEGURADORAS")]
- [OldValue("1014")]
- [Tipo("DOCUMENTO")]
- MetaSeguradora,
- [Description("RELATÓRIO DE METAS DE VENDEDORES")]
- [OldValue("1015")]
- [Tipo("DOCUMENTO")]
- MetaVendedor,
- [Description("RELATÓRIO DE VENCIMENTO DE PARCELAS")]
- [OldValue("1016")]
- [Tipo("PARCELA")]
- ParcelasVencendo,
- [Description("RELATÓRIO DE LICENCIAMENTO")]
- [OldValue("1017")]
- [Tipo("CLIENTE")]
- Licenciamento,
- [Description("RELATÓRIO DE TAREFAS")]
- [OldValue("1018")]
- [Tipo("TAREFA")]
- Tarefa,
- [Description("RELATÓRIO DE NOTAS FISCAIS")]
- [OldValue("1019")]
- [Tipo("NOTA FISCAL")]
- NotaFiscal,
- [Description("RELATÓRIO DE PREVISÃO DE PAGAMENTO DE COMISSÃO")]
- [OldValue("1020")]
- [Tipo("PARCELA")]
- PrevisaoPagamentoComissao,
- [Description("RELATÓRIO DE ASSINATURAS ENVIADAS")]
- [OldValue("1021")]
- [Tipo("DOCUMENTO")]
- AssinaturasEnviadas,
- [Description("PRODUÇÃO")]
- [OldValue("1022")]
- [Tipo("DOCUMENTO")]
- Apolice,
- [Description("RELATÓRIO DE LOGS DE ENVIO DE E-MAIL")]
- [OldValue("1023")]
- [Tipo("LOGS")]
- LogsEnvio,
- [Description("RELATÓRIO DE LOGS UTILIZAÇÃO")]
- [OldValue("1024")]
- [Tipo("LOGS")]
- LogsUtilizacao,
- [Description("RELATÓRIO DE LOGS UTILIZAÇÃO SISTEMA ANTIGO")]
- [OldValue("1025")]
- [Tipo("LOGS")]
- LogsUtilizacaoAntigo,
- [Description("RELATÓRIO DE IMPORTAÇÃO")]
- [OldValue("1026")]
- [Tipo("DOCUMENTO")]
- Importacao,
- [Description("RELATÓRIO DE PLACAS")]
- [OldValue("1027")]
- [Tipo("DOCUMENTO")]
- Placa,
- [Description("RELATÓRIO DE ENDOSSO")]
- [OldValue("1028")]
- [Tipo("DOCUMENTO")]
- Endosso,
- [Description("RELATÓRIO DE CLASSIFICAÇÃO")]
- [OldValue("1029")]
- [Tipo("CLIENTE")]
- Classificacao
- }
-} \ No newline at end of file