1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using Gestor.Model.Attributes;
using Gestor.Model.Domain.Seguros;
namespace Gestor.Model.Domain.BI;
public class AtalhosApolice
{
public long Id { get; set; }
public string Agrupamento { get; set; }
[Tipo("QUANTIDADE")]
[Description("SEGUROS VENCENDO")]
public Tuple<decimal, int, List<Documento>> Vencimento { get; set; }
[Tipo("QUANTIDADE")]
[Description("SEGUROS VENCIDOS")]
public Tuple<decimal, int, List<Documento>> Vencidos { get; set; }
[Tipo("VALOR")]
[Description("PRODUÇÃO")]
public Tuple<decimal, int, List<Documento>> Producao { get; set; }
[Tipo("QUANTIDADE")]
[Description("APÓLICES PENDENTES")]
public Tuple<decimal, int, List<Documento>> Pendencia { get; set; }
[Tipo("VALOR")]
[Description("NOVOS NEGÓCIOS")]
public Tuple<decimal, int, List<Documento>> NovosNegocios { get; set; }
[Tipo("VALOR")]
[Description("RENOVADOS")]
public Tuple<decimal, int, List<Documento>> Renovados { get; set; }
[Tipo("VALOR")]
[Description("CANCELADOS")]
public Tuple<decimal, int, List<Documento>> Cancelados { get; set; }
[Tipo("VALOR")]
[Description("PERDIDOS")]
public Tuple<decimal, int, List<Documento>> Perdidos { get; set; }
[Tipo("VALOR")]
[Description("COMISSÃO GERADA")]
public Tuple<decimal, int, List<Documento>> Gerada { get; set; }
public DateTime Inicio { get; set; }
public DateTime Fim { get; set; }
}
|