diff options
Diffstat (limited to 'Codemerx/Gestor.Model/Model.CalculoWeb/VidaGlobal')
3 files changed, 147 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.CalculoWeb/VidaGlobal/CalculoVidaGlobal.cs b/Codemerx/Gestor.Model/Model.CalculoWeb/VidaGlobal/CalculoVidaGlobal.cs new file mode 100644 index 0000000..60a3b45 --- /dev/null +++ b/Codemerx/Gestor.Model/Model.CalculoWeb/VidaGlobal/CalculoVidaGlobal.cs @@ -0,0 +1,44 @@ +using Gestor.Model.CalculoWeb;
+using Gestor.Model.CalculoWeb.Empresa;
+using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.CalculoWeb.VidaGlobal
+{
+ public class CalculoVidaGlobal
+ {
+ public CalculoVidaGlobal Cobertura
+ {
+ get;
+ set;
+ }
+
+ public EnderecoEmpresa Endereco
+ {
+ get;
+ set;
+ }
+
+ public QuestionarioVidaGlobal Questionario
+ {
+ get;
+ set;
+ }
+
+ public Gestor.Model.CalculoWeb.Segurado Segurado
+ {
+ get;
+ set;
+ }
+
+ public Gestor.Model.CalculoWeb.Seguro Seguro
+ {
+ get;
+ set;
+ }
+
+ public CalculoVidaGlobal()
+ {
+ }
+ }
+}
\ No newline at end of file diff --git a/Codemerx/Gestor.Model/Model.CalculoWeb/VidaGlobal/CoberturaVidaGlobal.cs b/Codemerx/Gestor.Model/Model.CalculoWeb/VidaGlobal/CoberturaVidaGlobal.cs new file mode 100644 index 0000000..dc43427 --- /dev/null +++ b/Codemerx/Gestor.Model/Model.CalculoWeb/VidaGlobal/CoberturaVidaGlobal.cs @@ -0,0 +1,66 @@ +using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.CalculoWeb.VidaGlobal
+{
+ public class CoberturaVidaGlobal
+ {
+ public string AssistenciaFuneral
+ {
+ get;
+ set;
+ }
+
+ public decimal? CapitalFuncionario
+ {
+ get;
+ set;
+ }
+
+ public decimal? CapitalSocio
+ {
+ get;
+ set;
+ }
+
+ public int Funcionario
+ {
+ get;
+ set;
+ }
+
+ public int Id
+ {
+ get;
+ set;
+ }
+
+ public string Ifpd
+ {
+ get;
+ set;
+ }
+
+ public string Ipa
+ {
+ get;
+ set;
+ }
+
+ public string MorteAcidental
+ {
+ get;
+ set;
+ }
+
+ public int Socio
+ {
+ get;
+ set;
+ }
+
+ public CoberturaVidaGlobal()
+ {
+ }
+ }
+}
\ No newline at end of file diff --git a/Codemerx/Gestor.Model/Model.CalculoWeb/VidaGlobal/QuestionarioVidaGlobal.cs b/Codemerx/Gestor.Model/Model.CalculoWeb/VidaGlobal/QuestionarioVidaGlobal.cs new file mode 100644 index 0000000..8732069 --- /dev/null +++ b/Codemerx/Gestor.Model/Model.CalculoWeb/VidaGlobal/QuestionarioVidaGlobal.cs @@ -0,0 +1,37 @@ +using System;
+using System.Collections.Generic;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.CalculoWeb.VidaGlobal
+{
+ public class QuestionarioVidaGlobal
+ {
+ public List<string> Atividades
+ {
+ get;
+ set;
+ }
+
+ public string Cnae
+ {
+ get;
+ set;
+ }
+
+ public int Funcionario
+ {
+ get;
+ set;
+ }
+
+ public int Id
+ {
+ get;
+ set;
+ }
+
+ public QuestionarioVidaGlobal()
+ {
+ }
+ }
+}
\ No newline at end of file |