summaryrefslogtreecommitdiff
path: root/Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs')
-rw-r--r--Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs60
1 files changed, 0 insertions, 60 deletions
diff --git a/Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs b/Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs
deleted file mode 100644
index a3e3604..0000000
--- a/Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-using Gestor.Model.Attributes;
-using System;
-using System.ComponentModel;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Model.Domain.Relatorios.Pagamento
-{
- public class SinteticoPagamento
- {
- [Description("QUANTIDADE DE APÓLICES")]
- [Tipo("QUANTIDADE")]
- public int Apolices
- {
- get;
- set;
- }
-
- public string Descricao
- {
- get;
- set;
- }
-
- [Description("QUANTIDADE DE ENDOSSOS")]
- [Tipo("QUANTIDADE")]
- public int Endossos
- {
- get;
- set;
- }
-
- [Description("SOMA REPASSE BRUTO")]
- [Tipo("VALOR")]
- public decimal RepasseBruto
- {
- get;
- set;
- }
-
- [Description("SOMA REPASSE LIQUIDO")]
- [Tipo("VALOR")]
- public decimal RepasseLiquido
- {
- get;
- set;
- }
-
- [Description("TOTAL DE DOCUMENTOS")]
- [Tipo("QUANTIDADE")]
- public int Total
- {
- get;
- set;
- }
-
- public SinteticoPagamento()
- {
- }
- }
-} \ No newline at end of file