summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Domain.BI/AtalhosApolice.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 /Codemerx/Gestor.Model/Model.Domain.BI/AtalhosApolice.cs
parent674ca83ba9243a9e95a7568c797668dab6aee26a (diff)
downloadgestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz
gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip
chore: location
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Domain.BI/AtalhosApolice.cs')
-rw-r--r--Codemerx/Gestor.Model/Model.Domain.BI/AtalhosApolice.cs112
1 files changed, 112 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.Domain.BI/AtalhosApolice.cs b/Codemerx/Gestor.Model/Model.Domain.BI/AtalhosApolice.cs
new file mode 100644
index 0000000..6344463
--- /dev/null
+++ b/Codemerx/Gestor.Model/Model.Domain.BI/AtalhosApolice.cs
@@ -0,0 +1,112 @@
+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 AtalhosApolice
+ {
+ public string Agrupamento
+ {
+ get;
+ set;
+ }
+
+ [Description("CANCELADOS")]
+ [Tipo("VALOR")]
+ public Tuple<decimal, int, List<Documento>> Cancelados
+ {
+ get;
+ set;
+ }
+
+ public DateTime Fim
+ {
+ get;
+ set;
+ }
+
+ [Description("COMISSÃO GERADA")]
+ [Tipo("VALOR")]
+ public Tuple<decimal, int, List<Documento>> Gerada
+ {
+ get;
+ set;
+ }
+
+ public long Id
+ {
+ get;
+ set;
+ }
+
+ public DateTime Inicio
+ {
+ get;
+ set;
+ }
+
+ [Description("NOVOS NEGÓCIOS")]
+ [Tipo("VALOR")]
+ public Tuple<decimal, int, List<Documento>> NovosNegocios
+ {
+ get;
+ set;
+ }
+
+ [Description("APÓLICES PENDENTES")]
+ [Tipo("QUANTIDADE")]
+ public Tuple<decimal, int, List<Documento>> Pendencia
+ {
+ get;
+ set;
+ }
+
+ [Description("PERDIDOS")]
+ [Tipo("VALOR")]
+ public Tuple<decimal, int, List<Documento>> Perdidos
+ {
+ get;
+ set;
+ }
+
+ [Description("PRODUÇÃO")]
+ [Tipo("VALOR")]
+ public Tuple<decimal, int, List<Documento>> Producao
+ {
+ get;
+ set;
+ }
+
+ [Description("RENOVADOS")]
+ [Tipo("VALOR")]
+ public Tuple<decimal, int, List<Documento>> Renovados
+ {
+ get;
+ set;
+ }
+
+ [Description("SEGUROS VENCIDOS")]
+ [Tipo("QUANTIDADE")]
+ public Tuple<decimal, int, List<Documento>> Vencidos
+ {
+ get;
+ set;
+ }
+
+ [Description("SEGUROS VENCENDO")]
+ [Tipo("QUANTIDADE")]
+ public Tuple<decimal, int, List<Documento>> Vencimento
+ {
+ get;
+ set;
+ }
+
+ public AtalhosApolice()
+ {
+ }
+ }
+} \ No newline at end of file