diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:35:25 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:35:25 +0000 |
| commit | 674ca83ba9243a9e95a7568c797668dab6aee26a (patch) | |
| tree | 4a905b3fb1d827665a34d63f67bc5559f8e7235b /Gestor.Model/Model.CalculoWeb/Condominio | |
| download | gestor-674ca83ba9243a9e95a7568c797668dab6aee26a.tar.gz gestor-674ca83ba9243a9e95a7568c797668dab6aee26a.zip | |
feat: upload files
Diffstat (limited to 'Gestor.Model/Model.CalculoWeb/Condominio')
3 files changed, 326 insertions, 0 deletions
diff --git a/Gestor.Model/Model.CalculoWeb/Condominio/CalculoCondominio.cs b/Gestor.Model/Model.CalculoWeb/Condominio/CalculoCondominio.cs new file mode 100644 index 0000000..9b3d7d7 --- /dev/null +++ b/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/Gestor.Model/Model.CalculoWeb/Condominio/CoberturaCondominio.cs b/Gestor.Model/Model.CalculoWeb/Condominio/CoberturaCondominio.cs new file mode 100644 index 0000000..b020d5c --- /dev/null +++ b/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/Gestor.Model/Model.CalculoWeb/Condominio/QuestionarioCondominio.cs b/Gestor.Model/Model.CalculoWeb/Condominio/QuestionarioCondominio.cs new file mode 100644 index 0000000..082fd13 --- /dev/null +++ b/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 |