blob: 5adc054b05a67c997f13dbe4b28d3dce02cbbb6f (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
using System;
using System.ComponentModel;
using Gestor.Model.Attributes;
using Gestor.Model.Common;
namespace Gestor.Model.Domain.Seguros;
public class ProspeccaoToPrint
{
private string _nome;
private string _item;
[Description("CLIENTE")]
public string Nome
{
get
{
return _nome?.ToUpper();
}
set
{
_nome = value;
}
}
[Description("DOCUMENTO")]
public string Documento { get; set; }
[Tipo("DATA?")]
[Description("NASCIMENTO")]
public DateTime? Nascimento { get; set; }
[Description("DDD")]
public string Prefixo1 { get; set; }
[Description("TELEFONE")]
public string Telefone1 { get; set; }
[Description("DDD")]
public string Prefixo2 { get; set; }
[Description("TELEFONE")]
public string Telefone2 { get; set; }
[Description("E-MAIL")]
public string Email { get; set; }
[Tipo("DATA?")]
[Description("VIGÊNCIA FINAL")]
public DateTime? VigenciaFinal { get; set; }
[Description("ITEM")]
public string Item
{
get
{
return _item?.ToUpper();
}
set
{
_item = value;
}
}
[Description("VENDEDOR")]
public string Vendedor { get; set; }
[Tipo("ENUM?")]
[Description("STATUS")]
public StatusProspeccao? Status { get; set; }
[Description("STATUS PERSONALIZADO")]
public string StatusPersonalizadotoPrint { get; set; }
[Description("TIPO")]
public string Tipo { get; set; }
[Description("VALOR")]
public decimal Valor { get; set; }
}
|