diff options
Diffstat (limited to 'Gestor.Model/Model.CalculoWeb/Condominio')
3 files changed, 0 insertions, 326 deletions
diff --git a/Gestor.Model/Model.CalculoWeb/Condominio/CalculoCondominio.cs b/Gestor.Model/Model.CalculoWeb/Condominio/CalculoCondominio.cs deleted file mode 100644 index 9b3d7d7..0000000 --- a/Gestor.Model/Model.CalculoWeb/Condominio/CalculoCondominio.cs +++ /dev/null @@ -1,44 +0,0 @@ -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 deleted file mode 100644 index b020d5c..0000000 --- a/Gestor.Model/Model.CalculoWeb/Condominio/CoberturaCondominio.cs +++ /dev/null @@ -1,186 +0,0 @@ -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 deleted file mode 100644 index 082fd13..0000000 --- a/Gestor.Model/Model.CalculoWeb/Condominio/QuestionarioCondominio.cs +++ /dev/null @@ -1,96 +0,0 @@ -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 |