summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.CalculoWeb/Condominio
diff options
context:
space:
mode:
authorLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:38:18 +0000
committerLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:38:18 +0000
commit1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (patch)
treee1c3b20ea08f0cf71122a1e73f0d395f8fd83874 /Codemerx/Gestor.Model/Model.CalculoWeb/Condominio
parent674ca83ba9243a9e95a7568c797668dab6aee26a (diff)
downloadgestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz
gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip
chore: location
Diffstat (limited to 'Codemerx/Gestor.Model/Model.CalculoWeb/Condominio')
-rw-r--r--Codemerx/Gestor.Model/Model.CalculoWeb/Condominio/CalculoCondominio.cs44
-rw-r--r--Codemerx/Gestor.Model/Model.CalculoWeb/Condominio/CoberturaCondominio.cs186
-rw-r--r--Codemerx/Gestor.Model/Model.CalculoWeb/Condominio/QuestionarioCondominio.cs96
3 files changed, 326 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.CalculoWeb/Condominio/CalculoCondominio.cs b/Codemerx/Gestor.Model/Model.CalculoWeb/Condominio/CalculoCondominio.cs
new file mode 100644
index 0000000..9b3d7d7
--- /dev/null
+++ b/Codemerx/Gestor.Model/Model.CalculoWeb/Condominio/CalculoCondominio.cs
@@ -0,0 +1,44 @@
+using Gestor.Model.CalculoWeb;
+using Gestor.Model.CalculoWeb.Empresa;
+using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.CalculoWeb.Condominio
+{
+ public class CalculoCondominio
+ {
+ public CoberturaCondominio Cobertura
+ {
+ get;
+ set;
+ }
+
+ public EnderecoEmpresa Endereco
+ {
+ get;
+ set;
+ }
+
+ public QuestionarioCondominio Questionario
+ {
+ get;
+ set;
+ }
+
+ public Gestor.Model.CalculoWeb.Segurado Segurado
+ {
+ get;
+ set;
+ }
+
+ public Gestor.Model.CalculoWeb.Seguro Seguro
+ {
+ get;
+ set;
+ }
+
+ public CalculoCondominio()
+ {
+ }
+ }
+} \ No newline at end of file
diff --git a/Codemerx/Gestor.Model/Model.CalculoWeb/Condominio/CoberturaCondominio.cs b/Codemerx/Gestor.Model/Model.CalculoWeb/Condominio/CoberturaCondominio.cs
new file mode 100644
index 0000000..b020d5c
--- /dev/null
+++ b/Codemerx/Gestor.Model/Model.CalculoWeb/Condominio/CoberturaCondominio.cs
@@ -0,0 +1,186 @@
+using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.CalculoWeb.Condominio
+{
+ public class CoberturaCondominio
+ {
+ public decimal? Alagamento
+ {
+ get;
+ set;
+ }
+
+ public decimal? Aluguel
+ {
+ get;
+ set;
+ }
+
+ public decimal? Anuncios
+ {
+ get;
+ set;
+ }
+
+ public string Assistencia
+ {
+ get;
+ set;
+ }
+
+ public decimal? Basica
+ {
+ get;
+ set;
+ }
+
+ public decimal? Chuveiro
+ {
+ get;
+ set;
+ }
+
+ public decimal? Condominio
+ {
+ get;
+ set;
+ }
+
+ public decimal? DanosEletricos
+ {
+ get;
+ set;
+ }
+
+ public decimal? DanosMorais
+ {
+ get;
+ set;
+ }
+
+ public decimal? Desmoronamento
+ {
+ get;
+ set;
+ }
+
+ public decimal? DespesasFixas
+ {
+ get;
+ set;
+ }
+
+ public decimal? Empregador
+ {
+ get;
+ set;
+ }
+
+ public decimal? Equipamento
+ {
+ get;
+ set;
+ }
+
+ public decimal? Garagista
+ {
+ get;
+ set;
+ }
+
+ public decimal? GaragistaExclusiva
+ {
+ get;
+ set;
+ }
+
+ public int? Id
+ {
+ get;
+ set;
+ }
+
+ public decimal? ImpactoVeiculo
+ {
+ get;
+ set;
+ }
+
+ public decimal? IncendioBens
+ {
+ get;
+ set;
+ }
+
+ public decimal? PlacasSolares
+ {
+ get;
+ set;
+ }
+
+ public decimal? Portoes
+ {
+ get;
+ set;
+ }
+
+ public decimal? RouboBens
+ {
+ get;
+ set;
+ }
+
+ public decimal? RouboCondominio
+ {
+ get;
+ set;
+ }
+
+ public decimal? Sindico
+ {
+ get;
+ set;
+ }
+
+ public decimal? TumultoGreve
+ {
+ get;
+ set;
+ }
+
+ public string ValorNovo
+ {
+ get;
+ set;
+ }
+
+ public decimal? Vazamento
+ {
+ get;
+ set;
+ }
+
+ public decimal? Vendaval
+ {
+ get;
+ set;
+ }
+
+ public decimal? VidaFuncionario
+ {
+ get;
+ set;
+ }
+
+ public decimal? Vidros
+ {
+ get;
+ set;
+ }
+
+ public CoberturaCondominio()
+ {
+ }
+ }
+} \ No newline at end of file
diff --git a/Codemerx/Gestor.Model/Model.CalculoWeb/Condominio/QuestionarioCondominio.cs b/Codemerx/Gestor.Model/Model.CalculoWeb/Condominio/QuestionarioCondominio.cs
new file mode 100644
index 0000000..082fd13
--- /dev/null
+++ b/Codemerx/Gestor.Model/Model.CalculoWeb/Condominio/QuestionarioCondominio.cs
@@ -0,0 +1,96 @@
+using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.CalculoWeb.Condominio
+{
+ public class QuestionarioCondominio
+ {
+ public string AnoConstrucao
+ {
+ get;
+ set;
+ }
+
+ public string AreaComercial
+ {
+ get;
+ set;
+ }
+
+ public string AreaConstruida
+ {
+ get;
+ set;
+ }
+
+ public string Blocos
+ {
+ get;
+ set;
+ }
+
+ public string Desmoronamento
+ {
+ get;
+ set;
+ }
+
+ public string Elevadores
+ {
+ get;
+ set;
+ }
+
+ public string EquipamentoIncendio
+ {
+ get;
+ set;
+ }
+
+ public string EquipamentoSeguranca
+ {
+ get;
+ set;
+ }
+
+ public string Estrutura
+ {
+ get;
+ set;
+ }
+
+ public string Funcionarios
+ {
+ get;
+ set;
+ }
+
+ public int Id
+ {
+ get;
+ set;
+ }
+
+ public string ImovelTombado
+ {
+ get;
+ set;
+ }
+
+ public string Ocupacao
+ {
+ get;
+ set;
+ }
+
+ public string Pavimentos
+ {
+ get;
+ set;
+ }
+
+ public QuestionarioCondominio()
+ {
+ }
+ }
+} \ No newline at end of file