summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Domain.BI/AtalhosParcela.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Domain.BI/AtalhosParcela.cs')
-rw-r--r--Codemerx/Gestor.Model/Model.Domain.BI/AtalhosParcela.cs72
1 files changed, 72 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.Domain.BI/AtalhosParcela.cs b/Codemerx/Gestor.Model/Model.Domain.BI/AtalhosParcela.cs
new file mode 100644
index 0000000..c992a69
--- /dev/null
+++ b/Codemerx/Gestor.Model/Model.Domain.BI/AtalhosParcela.cs
@@ -0,0 +1,72 @@
+using Gestor.Model.Attributes;
+using Gestor.Model.Domain.Seguros;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.Domain.BI
+{
+ public class AtalhosParcela
+ {
+ public string Agrupamento
+ {
+ get;
+ set;
+ }
+
+ public DateTime Fim
+ {
+ get;
+ set;
+ }
+
+ public long Id
+ {
+ get;
+ set;
+ }
+
+ public DateTime Inicio
+ {
+ get;
+ set;
+ }
+
+ [Description("PARCELAS PAGAS")]
+ [Tipo("QUANTIDADE")]
+ public Tuple<decimal, int, List<Parcela>> Pagas
+ {
+ get;
+ set;
+ }
+
+ [Description("PARCELAS PENDENTES")]
+ [Tipo("QUANTIDADE")]
+ public Tuple<decimal, int, List<Parcela>> Pendente
+ {
+ get;
+ set;
+ }
+
+ [Description("COMISSÃO RECEBIDA")]
+ [Tipo("VALOR")]
+ public Tuple<decimal, int, List<Parcela>> Recebida
+ {
+ get;
+ set;
+ }
+
+ [Description("PARCELAS À VENCER")]
+ [Tipo("QUANTIDADE")]
+ public Tuple<decimal, int, List<Parcela>> Vencimento
+ {
+ get;
+ set;
+ }
+
+ public AtalhosParcela()
+ {
+ }
+ }
+} \ No newline at end of file