blob: b1d169980729b0ed02aecd4a2b1ebe51d9df81de (
plain)
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
|
using System.ComponentModel;
using Gestor.Model.Attributes;
using Gestor.Model.Domain.Seguros;
namespace Gestor.Model.Domain.Relatorios.Classificacao;
public class Classificacao
{
[Tipo("INVALID")]
public Gestor.Model.Domain.Seguros.Cliente EntidadeCliente { get; set; }
[Tipo("INVALID")]
public bool Selecionado { get; set; }
[Description("NOME")]
public string Nome { get; set; }
[Description("PREMIO LIQUIDO")]
public string Premioliquido { get; set; }
[Description("COMISSÃO")]
public string Comissao { get; set; }
[Description("RESULTADO")]
public string Resultado { get; set; }
[Description("GERAL")]
public string Geral { get; set; }
[Description("ATIVO")]
public string Ativo { get; set; }
}
|