blob: 34b57c8627fdd45a4d3c4c577cf6b622a6f0d994 (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
using System;
using System.Runtime.CompilerServices;
namespace Gestor.Model.CalculoWeb
{
public class Segurado
{
private string _estadoCivil;
private string _sexo;
public string Cep { get; set; } = string.Empty;
public string CpfCnpj
{
get;
set;
}
public DateTime? DataHabilitacao { get; set; } = new DateTime?(DateTime.MinValue);
public DateTime? DataNascimento { get; set; } = new DateTime?(DateTime.MinValue);
public string Email
{
get;
set;
}
public string EstadoCivil
{
get
{
return this._estadoCivil;
}
set
{
this._estadoCivil = value;
this._estadoCivil = this.ConvertEstCivCalculo(value);
}
}
public long Id
{
get;
set;
}
public string NomeCompleto
{
get;
set;
}
public string NumeroHabilitacao
{
get;
set;
}
public bool Perfil
{
get;
set;
}
public string RelacaoSeguradoCondutor
{
get;
set;
}
public string Sexo
{
get
{
return this._sexo;
}
set
{
this._sexo = value;
this._sexo = this.ConvertSexoCalculo(this._sexo);
value = this._sexo;
}
}
public Telefone TelefoneCelular
{
get;
set;
}
public Telefone TelefoneResidencial
{
get;
set;
}
public string TempoHabilitacao
{
get;
set;
}
public string Uf
{
get;
set;
}
public Segurado()
{
}
private string ConvertEstCivCalculo(string estadoCivil)
{
if (estadoCivil != null && estadoCivil.Length == 1)
{
switch (estadoCivil[0])
{
case '0':
{
return "1";
}
case '1':
{
return "2";
}
case '2':
{
return "3";
}
case '3':
case '5':
case '6':
case '7':
{
return "4";
}
case '4':
{
return "5";
}
}
}
return string.Empty;
}
private string ConvertSexoCalculo(string sexo)
{
if (sexo != "0")
{
return "2";
}
return "1";
}
}
}
|