diff options
Diffstat (limited to 'Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs')
| -rw-r--r-- | Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs b/Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs new file mode 100644 index 0000000..a3e3604 --- /dev/null +++ b/Gestor.Model/Model.Domain.Relatorios/Pagamento/SinteticoPagamento.cs @@ -0,0 +1,60 @@ +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 |