summaryrefslogtreecommitdiff
path: root/Gestor.Model/Model.CalculoWeb/Segurado.cs
diff options
context:
space:
mode:
authorLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:35:25 +0000
committerLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:35:25 +0000
commit674ca83ba9243a9e95a7568c797668dab6aee26a (patch)
tree4a905b3fb1d827665a34d63f67bc5559f8e7235b /Gestor.Model/Model.CalculoWeb/Segurado.cs
downloadgestor-674ca83ba9243a9e95a7568c797668dab6aee26a.tar.gz
gestor-674ca83ba9243a9e95a7568c797668dab6aee26a.zip
feat: upload files
Diffstat (limited to 'Gestor.Model/Model.CalculoWeb/Segurado.cs')
-rw-r--r--Gestor.Model/Model.CalculoWeb/Segurado.cs158
1 files changed, 158 insertions, 0 deletions
diff --git a/Gestor.Model/Model.CalculoWeb/Segurado.cs b/Gestor.Model/Model.CalculoWeb/Segurado.cs
new file mode 100644
index 0000000..34b57c8
--- /dev/null
+++ b/Gestor.Model/Model.CalculoWeb/Segurado.cs
@@ -0,0 +1,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";
+ }
+ }
+} \ No newline at end of file