agregado procesos y bd clases
This commit is contained in:
39
bdAsegasa/Presupuestos/AccidentesIndividualesAXA.cs
Normal file
39
bdAsegasa/Presupuestos/AccidentesIndividualesAXA.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class AccidentesIndividualesAXA
|
||||
{
|
||||
public string TomadorCIF { get; set; }
|
||||
public string TomadorNombre { get; set; }
|
||||
public string TomadorApellidos { get; set; }
|
||||
public string TomadorTelefono { get; set; }
|
||||
public string TomadorEmail { get; set; }
|
||||
public string TomadorDomicilio { get; set; }
|
||||
public string TomadorCodigoPostal { get; set; }
|
||||
public string TomadorPoblacion { get; set; }
|
||||
public string TomadorProvincia { get; set; }
|
||||
public string TomadorCodigoMunicipio { get; set; }
|
||||
|
||||
public string PropietarioCIF { get; set; }
|
||||
public string PropietarioNombre { get; set; }
|
||||
public string PropietarioApellidos { get; set; }
|
||||
public string PropietarioTelefono { get; set; }
|
||||
public string PropietarioEmail { get; set; }
|
||||
public string PropietarioDomicilio { get; set; }
|
||||
public string PropietarioCodigoPostal { get; set; }
|
||||
public string PropietarioPoblacion { get; set; }
|
||||
public string PropietarioProvincia { get; set; }
|
||||
public string PropietarioCodigoMunicipio { get; set; }
|
||||
|
||||
public string Observaciones { get; set; }
|
||||
public string CapitalElegido { get; set; }
|
||||
public string IBAN { get; set; }
|
||||
public DateTime FechaEfecto { get; set; }
|
||||
public DateTime FechaVencimiento { get; set; }
|
||||
}
|
||||
}
|
||||
38
bdAsegasa/Presupuestos/CasetasRiegoAXA.cs
Normal file
38
bdAsegasa/Presupuestos/CasetasRiegoAXA.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class CasetasRiegoAXA
|
||||
{
|
||||
public string TomadorCIF { get; set; }
|
||||
public string TomadorNombre { get; set; }
|
||||
public string TomadorApellidos { get; set; }
|
||||
public string TomadorTelefono { get; set; }
|
||||
public string TomadorEmail { get; set; }
|
||||
public string TomadorDomicilio { get; set; }
|
||||
public string TomadorCodigoPostal { get; set; }
|
||||
public string TomadorPoblacion { get; set; }
|
||||
public string TomadorProvincia { get; set; }
|
||||
public string TomadorCodigoMunicipio { get; set; }
|
||||
|
||||
public string CasetaUbicacion { get; set; }
|
||||
public string CasetaLocalidad { get; set; }
|
||||
public string CasetaCodigoPostal { get; set; }
|
||||
public string CasetaProvincia { get; set; }
|
||||
|
||||
public string EdificiosDescripcion { get; set; }
|
||||
public string EdificiosCapital { get; set; }
|
||||
public string MobiliarioDescripcion { get; set; }
|
||||
public string MobiliarioCapital { get; set; }
|
||||
public string ExistenciasDescripcion { get; set; }
|
||||
public string ExistenciasCapital { get; set; }
|
||||
|
||||
public string CapitalElegido { get; set; }
|
||||
public string IBAN { get; set; }
|
||||
public DateTime FechaEfecto { get; set; }
|
||||
public DateTime FechaVencimiento { get; set; }
|
||||
}
|
||||
}
|
||||
42
bdAsegasa/Presupuestos/Patinetes.cs
Normal file
42
bdAsegasa/Presupuestos/Patinetes.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
|
||||
[NotMapped]
|
||||
public class Patinetes
|
||||
{
|
||||
public string TomadorCIF { get; set; }
|
||||
public string TomadorNombre { get; set; }
|
||||
public string TomadorApellidos { get; set; }
|
||||
public string TomadorTelefono { get; set; }
|
||||
public string TomadorCorreo { get; set; }
|
||||
public string TomadorDomicilio { get; set; }
|
||||
public string TomadorCodigoPostal { get; set; }
|
||||
public string TomadorPoblacion { get; set; }
|
||||
public string TomadorProvincia { get; set; }
|
||||
public string TomadorCodigoMunicipio { get; set; }
|
||||
|
||||
public string PropietarioCIF { get; set; }
|
||||
public string PropietarioNombre { get; set; }
|
||||
public string PropietarioApellidos { get; set; }
|
||||
public string PropietarioTelefono { get; set; }
|
||||
public string PropietarioCorreo { get; set; }
|
||||
public string PropietarioDomicilio { get; set; }
|
||||
public string PropietarioCodigoPostal { get; set; }
|
||||
public string PropietarioPoblacion { get; set; }
|
||||
public string PropietarioProvincia { get; set; }
|
||||
public string PropietarioCodigoMunicipio { get; set; }
|
||||
|
||||
public string Producto { get; set; }
|
||||
public string Identificador { get; set; }
|
||||
public DateTime FechaCompra { get; set; }
|
||||
public double PrimaAnualizada { get; set; }
|
||||
public string Observaciones { get; set; }
|
||||
public string IBAN { get; set; }
|
||||
public DateTime FechaEfecto { get; set; }
|
||||
public DateTime FechaVencimiento { get; set; }
|
||||
}
|
||||
}
|
||||
27
bdAsegasa/Presupuestos/RCCaballos.cs
Normal file
27
bdAsegasa/Presupuestos/RCCaballos.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class RCCaballos
|
||||
{
|
||||
public string TomadorCIF { get; set; }
|
||||
public string TomadorNombre { get; set; }
|
||||
public string TomadorApellidos { get; set; }
|
||||
public string TomadorTelefono { get; set; }
|
||||
public string TomadorEmail { get; set; }
|
||||
public string TomadorDomicilio { get; set; }
|
||||
public string TomadorCodigoPostal { get; set; }
|
||||
public string TomadorPoblacion { get; set; }
|
||||
public string TomadorProvincia { get; set; }
|
||||
public string TomadorCodigoMunicipio { get; set; }
|
||||
|
||||
public string DocumentacionEquina { get; set; }
|
||||
public string Observaciones { get; set; }
|
||||
public string IBAN { get; set; }
|
||||
public DateTime FechaEfecto { get; set; }
|
||||
public DateTime FechaVencimiento { get; set; }
|
||||
}
|
||||
}
|
||||
53
bdAsegasa/Presupuestos/RCCotosCazaCaser.cs
Normal file
53
bdAsegasa/Presupuestos/RCCotosCazaCaser.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class RCCotosCazaCaser
|
||||
{
|
||||
public double NumeroHectareas { get; set; }
|
||||
public double OpcionA { get; set; }
|
||||
public double OpcionB { get; set; }
|
||||
public double OpcionC { get; set; }
|
||||
public string OpcionElegida { get; set; }
|
||||
public string TotalOpcionElegida { get; set; }
|
||||
public string LimitePorSiniestro { get; set; }
|
||||
|
||||
public string TomadorCIF { get; set; }
|
||||
public string TomadorNombre { get; set; }
|
||||
public string TomadorApellidos { get; set; }
|
||||
public string TomadorTelefono { get; set; }
|
||||
public string TomadorDomicilio { get; set; }
|
||||
public string TomadorCodigoPostal { get; set; }
|
||||
public string TomadorPoblacion { get; set; }
|
||||
public string TomadorProvincia { get; set; }
|
||||
public string TomadorCodigoMunicipio { get; set; }
|
||||
|
||||
public string PropietarioCIF { get; set; }
|
||||
public string PropietarioNombre { get; set; }
|
||||
public string PropietarioApellidos { get; set; }
|
||||
public string PropietarioTelefono { get; set; }
|
||||
public string PropietarioDomicilio { get; set; }
|
||||
public string PropietarioCodigoPostal { get; set; }
|
||||
public string PropietarioPoblacion { get; set; }
|
||||
public string PropietarioProvincia { get; set; }
|
||||
public string PropietarioCodigoMunicipio { get; set; }
|
||||
|
||||
public string RiesgoCodigoMunicipio { get; set; }
|
||||
public string RiesgoSituacion { get; set; }
|
||||
public string RiesgoCodigoPostal { get; set; }
|
||||
public string RiesgoPoblacion { get; set; }
|
||||
public string RiesgoProvincia { get; set; }
|
||||
public string RiesgoActividad { get; set; }
|
||||
public string RiesgoEpigrafe { get; set; }
|
||||
public string RiesgoDescripcion { get; set; }
|
||||
public string AclaracionesDeLaActividad { get; set; }
|
||||
public string Observaciones { get; set; }
|
||||
|
||||
public DateTime FechaEfecto { get; set; }
|
||||
public DateTime FechaVencimiento { get; set; }
|
||||
public string IBAN { get; set; }
|
||||
}
|
||||
}
|
||||
28
bdAsegasa/Presupuestos/RCMaquinariaAgricola.cs
Normal file
28
bdAsegasa/Presupuestos/RCMaquinariaAgricola.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class RCMaquinariaAgricola
|
||||
{
|
||||
public string AseguradoCIF { get; set; }
|
||||
public string AseguradoNombre { get; set; }
|
||||
public string AseguradoApellidos { get; set; }
|
||||
public string AseguradoDireccion { get; set; }
|
||||
public string AseguradoCodigoPostal { get; set; }
|
||||
public string CodigoMunicipio { get; set; }
|
||||
public string AseguradoPoblacion { get; set; }
|
||||
public string AseguradoTelefono1 { get; set; }
|
||||
public string AseguradoTelefono2 { get; set; }
|
||||
public string AseguradoCorreo { get; set; }
|
||||
public DateTime FechaEfecto { get; set; }
|
||||
public string FechaVencimiento { get; set; }
|
||||
public string IBAN { get; set; }
|
||||
public string Matricula { get; set; }
|
||||
public string Cobertura { get; set; }
|
||||
public string Elegida { get; set; }
|
||||
public string PrimaTotal { get; set; }
|
||||
}
|
||||
}
|
||||
62
bdAsegasa/Presupuestos/RCPerros.cs
Normal file
62
bdAsegasa/Presupuestos/RCPerros.cs
Normal file
@@ -0,0 +1,62 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class RCPerros
|
||||
{
|
||||
public string TomadorCIF { get; set; }
|
||||
public string TomadorNombre { get; set; }
|
||||
public string TomadorApellidos { get; set; }
|
||||
public string TomadorTelefono { get; set; }
|
||||
public string TomadorEmail { get; set; }
|
||||
public string TomadorDomicilio { get; set; }
|
||||
public string TomadorCodigoPostal { get; set; }
|
||||
public string TomadorPoblacion { get; set; }
|
||||
public string TomadorProvincia { get; set; }
|
||||
public string TomadorCodigoMunicipio { get; set; }
|
||||
|
||||
public string PropietarioCIF { get; set; }
|
||||
public string PropietarioNombre { get; set; }
|
||||
public string PropietarioApellidos { get; set; }
|
||||
public string PropietarioTelefono { get; set; }
|
||||
public string PropietarioEmail { get; set; }
|
||||
public string PropietarioDomicilio { get; set; }
|
||||
public string PropietarioCodigoPostal { get; set; }
|
||||
public string PropietarioPoblacion { get; set; }
|
||||
public string PropietarioProvincia { get; set; }
|
||||
public string PropietarioCodigoMunicipio { get; set; }
|
||||
|
||||
public string CoberturaElegida { get; set; }
|
||||
public string PrecioCobertura { get; set; }
|
||||
public int NumeroPerrosPeligrosos { get; set; }
|
||||
public int NumeroPerrosNoPeligrosos { get; set; }
|
||||
public double PrimaPerrosPeligrosos { get; set; }
|
||||
public double PrimaPerrosNoPeligrosos { get; set; }
|
||||
public double PrecioPerrosPeligrosos { get; set; }
|
||||
public double PrecioPerrosNoPeligrosos { get; set; }
|
||||
|
||||
public string PrimeroRaza { get; set; }
|
||||
public string PrimeroMicrochip { get; set; }
|
||||
public string PrimeroNombre { get; set; }
|
||||
public DateTime PrimeroFechaNacimiento { get; set; }
|
||||
|
||||
public string SegundoRaza { get; set; }
|
||||
public string SegundoMicrochip { get; set; }
|
||||
public string SegundoNombre { get; set; }
|
||||
public DateTime SegundoFechaNacimiento { get; set; }
|
||||
|
||||
public string TerceroRaza { get; set; }
|
||||
public string TerceroMicrochip { get; set; }
|
||||
public string TerceroNombre { get; set; }
|
||||
public DateTime TerceroFechaNacimiento { get; set; }
|
||||
|
||||
public string Observaciones { get; set; }
|
||||
public string IBAN { get; set; }
|
||||
public DateTime FechaEfecto { get; set; }
|
||||
public DateTime FechaVencimiento { get; set; }
|
||||
public string TipoPerro { get; set; }
|
||||
}
|
||||
}
|
||||
150
bdAsegasa/Presupuestos/RCSociosCaser.cs
Normal file
150
bdAsegasa/Presupuestos/RCSociosCaser.cs
Normal file
@@ -0,0 +1,150 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class RCSociosCaser
|
||||
{
|
||||
public string Nombre { get; set; }
|
||||
public string Situacion { get; set; }
|
||||
public string TMunicipal { get; set; }
|
||||
public string FProvincia { get; set; }
|
||||
public string Descripcion { get; set; }
|
||||
public double Equino { get; set; }
|
||||
public double VacunoManso { get; set; }
|
||||
public double Porcino { get; set; }
|
||||
public double OvinoCaprino { get; set; }
|
||||
public double Aviar { get; set; }
|
||||
public double Cunicula { get; set; }
|
||||
public double TotalGanado { get; set; }
|
||||
public double VacunoBravo { get; set; }
|
||||
public double MenorSinJabalies { get; set; }
|
||||
public double MenorConJabalies { get; set; }
|
||||
public double MayorSinMalla { get; set; }
|
||||
public double MayorConMalla { get; set; }
|
||||
public double HasLabor { get; set; }
|
||||
public double HasDehesa { get; set; }
|
||||
public double TotalSuperficie { get; set; }
|
||||
public int OpcionElegida { get; set; }
|
||||
public string Total { get; set; }
|
||||
public string IBAN { get; set; }
|
||||
|
||||
public double DañosMateriales1 { get; set; }
|
||||
public double DañosMateriales2 { get; set; }
|
||||
public double DañosMateriales3 { get; set; }
|
||||
public double DañosMateriales4 { get; set; }
|
||||
public double DañosMateriales5 { get; set; }
|
||||
public double DañosMateriales6 { get; set; }
|
||||
|
||||
public double Sublimite1 { get; set; }
|
||||
public double Sublimite2 { get; set; }
|
||||
public double Sublimite3 { get; set; }
|
||||
public double Sublimite4 { get; set; }
|
||||
public double Sublimite5 { get; set; }
|
||||
public double Sublimite6 { get; set; }
|
||||
|
||||
public double Patronal1 { get; set; }
|
||||
public double Patronal2 { get; set; }
|
||||
public double Patronal3 { get; set; }
|
||||
public double Patronal4 { get; set; }
|
||||
public double Patronal5 { get; set; }
|
||||
public double Patronal6 { get; set; }
|
||||
|
||||
public double PNetaLabor1 { get; set; }
|
||||
public double PNetaLabor2 { get; set; }
|
||||
public double PNetaLabor3 { get; set; }
|
||||
public double PNetaLabor4 { get; set; }
|
||||
public double PNetaLabor5 { get; set; }
|
||||
public double PNetaLabor6 { get; set; }
|
||||
|
||||
public double PNetaGanado1 { get; set; }
|
||||
public double PNetaGanado2 { get; set; }
|
||||
public double PNetaGanado3 { get; set; }
|
||||
public double PNetaGanado4 { get; set; }
|
||||
public double PNetaGanado5 { get; set; }
|
||||
public double PNetaGanado6 { get; set; }
|
||||
|
||||
public double PNetaGanaderia1 { get; set; }
|
||||
public double PNetaGanaderia2 { get; set; }
|
||||
public double PNetaGanaderia3 { get; set; }
|
||||
public double PNetaGanaderia4 { get; set; }
|
||||
public double PNetaGanaderia5 { get; set; }
|
||||
public double PNetaGanaderia6 { get; set; }
|
||||
|
||||
public double PSubtotal1 { get; set; }
|
||||
public double PSubtotal2 { get; set; }
|
||||
public double PSubtotal3 { get; set; }
|
||||
public double PSubtotal4 { get; set; }
|
||||
public double PSubtotal5 { get; set; }
|
||||
public double PSubtotal6 { get; set; }
|
||||
|
||||
public double MenorSinJabalies1 { get; set; }
|
||||
public double MenorSinJabalies2 { get; set; }
|
||||
public double MenorSinJabalies3 { get; set; }
|
||||
public double MenorSinJabalies4 { get; set; }
|
||||
public double MenorSinJabalies5 { get; set; }
|
||||
public double MenorSinJabalies6 { get; set; }
|
||||
|
||||
public double MenorConJabalies1 { get; set; }
|
||||
public double MenorConJabalies2 { get; set; }
|
||||
public double MenorConJabalies3 { get; set; }
|
||||
public double MenorConJabalies4 { get; set; }
|
||||
public double MenorConJabalies5 { get; set; }
|
||||
public double MenorConJabalies6 { get; set; }
|
||||
|
||||
public double MayorSinMalla1 { get; set; }
|
||||
public double MayorSinMalla2 { get; set; }
|
||||
public double MayorSinMalla3 { get; set; }
|
||||
public double MayorSinMalla4 { get; set; }
|
||||
public double MayorSinMalla5 { get; set; }
|
||||
public double MayorSinMalla6 { get; set; }
|
||||
|
||||
public double MayorConMalla1 { get; set; }
|
||||
public double MayorConMalla2 { get; set; }
|
||||
public double MayorConMalla3 { get; set; }
|
||||
public double MayorConMalla4 { get; set; }
|
||||
public double MayorConMalla5 { get; set; }
|
||||
public double MayorConMalla6 { get; set; }
|
||||
|
||||
public double CotosSubtotal1 { get; set; }
|
||||
public double CotosSubtotal2 { get; set; }
|
||||
public double CotosSubtotal3 { get; set; }
|
||||
public double CotosSubtotal4 { get; set; }
|
||||
public double CotosSubtotal5 { get; set; }
|
||||
public double CotosSubtotal6 { get; set; }
|
||||
|
||||
public double PNeta1 { get; set; }
|
||||
public double PNeta2 { get; set; }
|
||||
public double PNeta3 { get; set; }
|
||||
public double PNeta4 { get; set; }
|
||||
public double PNeta5 { get; set; }
|
||||
public double PNeta6 { get; set; }
|
||||
|
||||
public double Impuestos1 { get; set; }
|
||||
public double Impuestos2 { get; set; }
|
||||
public double Impuestos3 { get; set; }
|
||||
public double Impuestos4 { get; set; }
|
||||
public double Impuestos5 { get; set; }
|
||||
public double Impuestos6 { get; set; }
|
||||
|
||||
public double PTotal1 { get; set; }
|
||||
public double PTotal2 { get; set; }
|
||||
public double PTotal3 { get; set; }
|
||||
public double PTotal4 { get; set; }
|
||||
public double PTotal5 { get; set; }
|
||||
public double PTotal6 { get; set; }
|
||||
|
||||
public string AseguradoCIF { get; set; }
|
||||
public string AseguradoNombre { get; set; }
|
||||
public string AseguradoApellidos { get; set; }
|
||||
public string AseguradoDireccion { get; set; }
|
||||
public string AseguradoCodigoPostal { get; set; }
|
||||
public string CodigoMunicipio { get; set; }
|
||||
public string AseguradoPoblacion { get; set; }
|
||||
public string AseguradoTelefono1 { get; set; }
|
||||
public string AseguradoTelefono2 { get; set; }
|
||||
public string AseguradoCorreo { get; set; }
|
||||
}
|
||||
}
|
||||
71
bdAsegasa/Presupuestos/RCSociosZurich.cs
Normal file
71
bdAsegasa/Presupuestos/RCSociosZurich.cs
Normal file
@@ -0,0 +1,71 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class RCSociosZurich
|
||||
{
|
||||
public string TomadorCIF { get; set; }
|
||||
public string TomadorNombre { get; set; }
|
||||
public string TomadorApellidos { get; set; }
|
||||
public string TomadorTelefono { get; set; }
|
||||
public string TomadorTelefono2 { get; set; }
|
||||
public string TomadorEmail { get; set; }
|
||||
public string TomadorDomicilio { get; set; }
|
||||
public string TomadorCodigoPostal { get; set; }
|
||||
public string TomadorPoblacion { get; set; }
|
||||
public string TomadorProvincia { get; set; }
|
||||
public string TomadorCodigoMunicipio { get; set; }
|
||||
|
||||
public string PropietarioCIF { get; set; }
|
||||
public string PropietarioNombre { get; set; }
|
||||
public string PropietarioApellidos { get; set; }
|
||||
public string PropietarioTelefono { get; set; }
|
||||
public string PropietarioTelefono2 { get; set; }
|
||||
public string PropietarioEmail { get; set; }
|
||||
public string PropietarioDomicilio { get; set; }
|
||||
public string PropietarioCodigoPostal { get; set; }
|
||||
public string PropietarioPoblacion { get; set; }
|
||||
public string PropietarioProvincia { get; set; }
|
||||
public string PropietarioCodigoMunicipio { get; set; }
|
||||
|
||||
public double Dehesa { get; set; }
|
||||
public double SuperficieCosechable { get; set; }
|
||||
public double CotoDeCaza { get; set; }
|
||||
public double VidaPrivada { get; set; }
|
||||
public int CabezasVacuno { get; set; }
|
||||
public int CabezasOvino { get; set; }
|
||||
public int CabezasPorcino { get; set; }
|
||||
public int CabezasEquino { get; set; }
|
||||
public int CabezasGanadoBravo { get; set; }
|
||||
|
||||
public string NumeroRega { get; set; }
|
||||
public string CodigoGanadero { get; set; }
|
||||
public string Observaciones { get; set; }
|
||||
public string SumaContratar { get; set; }
|
||||
|
||||
public string IBAN { get; set; }
|
||||
public DateTime FechaEfecto { get; set; }
|
||||
public DateTime FechaVencimiento { get; set; }
|
||||
public string FormaPago { get; set; }
|
||||
public string TipoRC { get; set; }
|
||||
|
||||
public double OpcionA { get; set; }
|
||||
public double OpcionB { get; set; }
|
||||
public double OpcionC { get; set; }
|
||||
|
||||
public double PrimaNetaA { get; set; }
|
||||
public double PrimaNetaB { get; set; }
|
||||
public double PrimaNetaC { get; set; }
|
||||
|
||||
public double ImpuestosA { get; set; }
|
||||
public double ImpuestosB { get; set; }
|
||||
public string ImpuestosC { get; set; }
|
||||
|
||||
public double PrimaTotalA { get; set; }
|
||||
public double PrimaTotalB { get; set; }
|
||||
public double PrimaTotalC { get; set; }
|
||||
}
|
||||
}
|
||||
129
bdAsegasa/Presupuestos/SaludMapfre.cs
Normal file
129
bdAsegasa/Presupuestos/SaludMapfre.cs
Normal file
@@ -0,0 +1,129 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class SaludMapfre
|
||||
{
|
||||
public string TomadorCIF { get; set; }
|
||||
public string TomadorNombre { get; set; }
|
||||
public string TomadorApellidos { get; set; }
|
||||
public string TomadorTelefono { get; set; }
|
||||
public string TomadorEmail { get; set; }
|
||||
public string TomadorDomicilio { get; set; }
|
||||
public string TomadorCodigoPostal { get; set; }
|
||||
public string TomadorPoblacion { get; set; }
|
||||
public string TomadorProvincia { get; set; }
|
||||
public string TomadorCodigoMunicipio { get; set; }
|
||||
public DateTime TomadorFechaNacimiento { get; set; }
|
||||
public string TomadorSexo { get; set; }
|
||||
public string TomadorEstadoCivil { get; set; }
|
||||
|
||||
public string Asegurado1CIF { get; set; }
|
||||
public string Asegurado1Nombre { get; set; }
|
||||
public string Asegurado1Apellidos { get; set; }
|
||||
public string Asegurado1Domicilio { get; set; }
|
||||
public string Asegurado1CodigoPostal { get; set; }
|
||||
public string Asegurado1Poblacion { get; set; }
|
||||
public string Asegurado1Provincia { get; set; }
|
||||
public string Asegurado1CodigoMunicipio { get; set; }
|
||||
public string Asegurado1Telefono { get; set; }
|
||||
public string Asegurado1Email { get; set; }
|
||||
public DateTime Asegurado1FechaNacimiento { get; set; }
|
||||
public string Asegurado1Sexo { get; set; }
|
||||
public int Asegurado1Peso { get; set; }
|
||||
public int Asegurado1Estatura { get; set; }
|
||||
public string Asegurado1Profesion { get; set; }
|
||||
public string Asegurado1Parentesco { get; set; }
|
||||
|
||||
public string Asegurado2CIF { get; set; }
|
||||
public string Asegurado2Nombre { get; set; }
|
||||
public string Asegurado2Apellidos { get; set; }
|
||||
public string Asegurado2Domicilio { get; set; }
|
||||
public string Asegurado2CodigoPostal { get; set; }
|
||||
public string Asegurado2Poblacion { get; set; }
|
||||
public string Asegurado2Provincia { get; set; }
|
||||
public string Asegurado2CodigoMunicipio { get; set; }
|
||||
public string Asegurado2Telefono { get; set; }
|
||||
public string Asegurado2Email { get; set; }
|
||||
public DateTime Asegurado2FechaNacimiento { get; set; }
|
||||
public string Asegurado2Sexo { get; set; }
|
||||
public int Asegurado2Peso { get; set; }
|
||||
public int Asegurado2Estatura { get; set; }
|
||||
public string Asegurado2Profesion { get; set; }
|
||||
public string Asegurado2Parentesco { get; set; }
|
||||
|
||||
public string Asegurado3CIF { get; set; }
|
||||
public string Asegurado3Nombre { get; set; }
|
||||
public string Asegurado3Apellidos { get; set; }
|
||||
public string Asegurado3Domicilio { get; set; }
|
||||
public string Asegurado3CodigoPostal { get; set; }
|
||||
public string Asegurado3Poblacion { get; set; }
|
||||
public string Asegurado3Provincia { get; set; }
|
||||
public string Asegurado3CodigoMunicipio { get; set; }
|
||||
public string Asegurado3Telefono { get; set; }
|
||||
public string Asegurado3Email { get; set; }
|
||||
public DateTime Asegurado3FechaNacimiento { get; set; }
|
||||
public string Asegurado3Sexo { get; set; }
|
||||
public int Asegurado3Peso { get; set; }
|
||||
public int Asegurado3Estatura { get; set; }
|
||||
public string Asegurado3Profesion { get; set; }
|
||||
public string Asegurado3Parentesco { get; set; }
|
||||
|
||||
public string Asegurado4CIF { get; set; }
|
||||
public string Asegurado4Nombre { get; set; }
|
||||
public string Asegurado4Apellidos { get; set; }
|
||||
public string Asegurado4Domicilio { get; set; }
|
||||
public string Asegurado4CodigoPostal { get; set; }
|
||||
public string Asegurado4Poblacion { get; set; }
|
||||
public string Asegurado4Provincia { get; set; }
|
||||
public string Asegurado4CodigoMunicipio { get; set; }
|
||||
public string Asegurado4Telefono { get; set; }
|
||||
public string Asegurado4Email { get; set; }
|
||||
public DateTime Asegurado4FechaNacimiento { get; set; }
|
||||
public string Asegurado4Sexo { get; set; }
|
||||
public int Asegurado4Peso { get; set; }
|
||||
public string Asegurado4Estatura { get; set; }
|
||||
public string Asegurado4Profesion { get; set; }
|
||||
public string Asegurado4Parentesco { get; set; }
|
||||
|
||||
public bool Pregunta1Asegurado1 { get; set; }
|
||||
public bool Pregunta1Asegurado2 { get; set; }
|
||||
public bool Pregunta1Asegurado3 { get; set; }
|
||||
public bool Pregunta1Asegurado4 { get; set; }
|
||||
|
||||
public bool Pregunta2Asegurado1 { get; set; }
|
||||
public bool Pregunta2Asegurado2 { get; set; }
|
||||
public bool Pregunta2Asegurado3 { get; set; }
|
||||
public bool Pregunta2Asegurado4 { get; set; }
|
||||
|
||||
public bool Pregunta3Asegurado1 { get; set; }
|
||||
public bool Pregunta3Asegurado2 { get; set; }
|
||||
public bool Pregunta3Asegurado3 { get; set; }
|
||||
public bool Pregunta3Asegurado4 { get; set; }
|
||||
|
||||
public bool Pregunta4Asegurado1 { get; set; }
|
||||
public bool Pregunta4Asegurado2 { get; set; }
|
||||
public bool Pregunta4Asegurado3 { get; set; }
|
||||
public bool Pregunta4Asegurado4 { get; set; }
|
||||
|
||||
public bool Pregunta5Asegurado1 { get; set; }
|
||||
public bool Pregunta5Asegurado2 { get; set; }
|
||||
public bool Pregunta5Asegurado3 { get; set; }
|
||||
public bool Pregunta5Asegurado4 { get; set; }
|
||||
|
||||
public string Observaciones { get; set; }
|
||||
public bool AsistenciaSanitaria { get; set; }
|
||||
public bool GarantiaBucodental { get; set; }
|
||||
public bool ReembolsoGastosCompletos { get; set; }
|
||||
public bool ReembolsoGastosHospitalarios { get; set; }
|
||||
public bool ReembolsoGranCobertura { get; set; }
|
||||
|
||||
public string FormaPago { get; set; }
|
||||
public string IBAN { get; set; }
|
||||
public DateTime FechaEfecto { get; set; }
|
||||
public DateTime FechaVencimiento { get; set; }
|
||||
}
|
||||
}
|
||||
28
bdAsegasa/Presupuestos/TarificadorGenerico.cs
Normal file
28
bdAsegasa/Presupuestos/TarificadorGenerico.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class TarificadorGenerico
|
||||
{
|
||||
public string TomadorCIF { get; set; }
|
||||
public string TomadorNombre { get; set; }
|
||||
public string TomadorApellidos { get; set; }
|
||||
public string TomadorTelefono { get; set; }
|
||||
public string TomadorTelefono2 { get; set; }
|
||||
public string TomadorEmail { get; set; }
|
||||
public string TomadorDomicilio { get; set; }
|
||||
public string TomadorCodigoPostal { get; set; }
|
||||
public string TomadorPoblacion { get; set; }
|
||||
public string TomadorProvincia { get; set; }
|
||||
public string TomadorCodigoMunicipio { get; set; }
|
||||
|
||||
public string FormaPago { get; set; }
|
||||
public string IBAN { get; set; }
|
||||
public string Total { get; set; }
|
||||
public DateTime FechaEfecto { get; set; }
|
||||
public DateTime FechaVencimiento { get; set; }
|
||||
}
|
||||
}
|
||||
64
bdAsegasa/Presupuestos/TarificadorMaquinaria.cs
Normal file
64
bdAsegasa/Presupuestos/TarificadorMaquinaria.cs
Normal file
@@ -0,0 +1,64 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class TarificadorMaquinaria
|
||||
{
|
||||
public string TomadorCIF { get; set; }
|
||||
public string TomadorNombre { get; set; }
|
||||
public string TomadorApellidos { get; set; }
|
||||
public string TomadorTelefono { get; set; }
|
||||
public string TomadorEmail { get; set; }
|
||||
public string TomadorDomicilio { get; set; }
|
||||
public string TomadorCodigoPostal { get; set; }
|
||||
public string TomadorPoblacion { get; set; }
|
||||
public string TomadorProvincia { get; set; }
|
||||
public string TomadorCodigoMunicipio { get; set; }
|
||||
|
||||
public string PropietarioCIF { get; set; }
|
||||
public string PropietarioNombre { get; set; }
|
||||
public string PropietarioApellidos { get; set; }
|
||||
public string PropietarioTelefono { get; set; }
|
||||
public string PropietarioEmail { get; set; }
|
||||
public string PropietarioDomicilio { get; set; }
|
||||
public string PropietarioCodigoPostal { get; set; }
|
||||
public string PropietarioPoblacion { get; set; }
|
||||
public string PropietarioProvincia { get; set; }
|
||||
public string PropietarioCodigoMunicipio { get; set; }
|
||||
|
||||
public string Matricula { get; set; }
|
||||
public string UsoAlQueSeDestina { get; set; }
|
||||
public int AntiguedadMaquinaria { get; set; }
|
||||
public int NumeroMaquinasAseguradas { get; set; }
|
||||
public int Cosechadoras { get; set; }
|
||||
public int CosechadorasRotura { get; set; }
|
||||
public int TractoresAgricolas { get; set; }
|
||||
public int Empacadoras { get; set; }
|
||||
public int Vendimiadoras { get; set; }
|
||||
public int NoAutoPropulsados { get; set; }
|
||||
public int VibradoresOlivos { get; set; }
|
||||
|
||||
public double CosechadorasCalculado { get; set; }
|
||||
public double CosechadorasRoturaCalculado { get; set; }
|
||||
public double TractoresAgricolasCalculado { get; set; }
|
||||
public double EmpacadorasCalculado { get; set; }
|
||||
public double VendimiadorasCalculado { get; set; }
|
||||
public double NoAutoPropulsadosCalculado { get; set; }
|
||||
public double VibradoresOlivosCalculado { get; set; }
|
||||
|
||||
public double PrimaNetaMinima { get; set; }
|
||||
public double PrimaNeta { get; set; }
|
||||
public double Impuestos { get; set; }
|
||||
public double PrimaTotal { get; set; }
|
||||
|
||||
public string Condicionantes { get; set; }
|
||||
public string Observaciones { get; set; }
|
||||
public string DaniosLuna { get; set; }
|
||||
public string IBAN { get; set; }
|
||||
public DateTime FechaEfecto { get; set; }
|
||||
public DateTime FechaVencimiento { get; set; }
|
||||
}
|
||||
}
|
||||
47
bdAsegasa/Presupuestos/TarificadorMaquinariaPlusUltra.cs
Normal file
47
bdAsegasa/Presupuestos/TarificadorMaquinariaPlusUltra.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class TarificadorMaquinariaPlusUltra
|
||||
{
|
||||
public string TomadorCIF { get; set; }
|
||||
public string TomadorNombre { get; set; }
|
||||
public string TomadorApellidos { get; set; }
|
||||
public string TomadorTelefono { get; set; }
|
||||
public string TomadorTelefono2 { get; set; }
|
||||
public string TomadorEmail { get; set; }
|
||||
public string TomadorDomicilio { get; set; }
|
||||
public string TomadorCodigoPostal { get; set; }
|
||||
public string TomadorPoblacion { get; set; }
|
||||
public string TomadorProvincia { get; set; }
|
||||
public string TomadorCodigoMunicipio { get; set; }
|
||||
|
||||
public string TipoMaquinaria { get; set; }
|
||||
public string UsoAlQueSeDestina { get; set; }
|
||||
public double ValorMaquinaria { get; set; }
|
||||
public double ValorAccesorios { get; set; }
|
||||
public string ExistenciasProductoRecolectado { get; set; }
|
||||
|
||||
public string Marca { get; set; }
|
||||
public string Modelo { get; set; }
|
||||
public DateTime FechaMatriculacion { get; set; }
|
||||
public string Antiguedad { get; set; }
|
||||
public string Estado { get; set; }
|
||||
|
||||
public string GarantiaIncendio { get; set; }
|
||||
public string GarantiaResponsabilidadCivil { get; set; }
|
||||
public string RiesgosExtensivos { get; set; }
|
||||
public string Paralizacion { get; set; }
|
||||
public string RoboExpoliacion { get; set; }
|
||||
public string Lunas { get; set; }
|
||||
|
||||
public string FormaPago { get; set; }
|
||||
public string IBAN { get; set; }
|
||||
public string Total { get; set; }
|
||||
public DateTime FechaEfecto { get; set; }
|
||||
public DateTime FechaVencimiento { get; set; }
|
||||
}
|
||||
}
|
||||
61
bdAsegasa/Presupuestos/Tractores.cs
Normal file
61
bdAsegasa/Presupuestos/Tractores.cs
Normal file
@@ -0,0 +1,61 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class Tractores
|
||||
{
|
||||
public double Peso { get; set; }
|
||||
public string Marca { get; set; }
|
||||
public string Modelo { get; set; }
|
||||
public string Version { get; set; }
|
||||
public DateTime FechaPrimeraMatriculacion { get; set; }
|
||||
public string TipoVehiculo { get; set; }
|
||||
public string Matricula { get; set; }
|
||||
|
||||
public string TomadorCodigoMunicipio { get; set; }
|
||||
public string TomadorDocumento { get; set; }
|
||||
public string TomadorTipoDocumento { get; set; }
|
||||
public string TomadorNombre { get; set; }
|
||||
public string TomadorApellido1 { get; set; }
|
||||
public string TomadorApellido2 { get; set; }
|
||||
public DateTime TomadorFechaNacimiento { get; set; }
|
||||
public string EstadoCivil { get; set; }
|
||||
public int TomadorSexo { get; set; }
|
||||
public string TomadorVia { get; set; }
|
||||
public string TomadorNombreVia { get; set; }
|
||||
public string TomadorNumeroVia { get; set; }
|
||||
public string TomadorRestoVia { get; set; }
|
||||
public string TomadorCodigoPostal { get; set; }
|
||||
public string TomadorPoblacion { get; set; }
|
||||
public string Telefono1 { get; set; }
|
||||
public string Telefono2 { get; set; }
|
||||
public string CorreoElectronico { get; set; }
|
||||
|
||||
public string TipoPropietario { get; set; }
|
||||
public string PropietarioDocumento { get; set; }
|
||||
public string PropietarioNombre { get; set; }
|
||||
public string PropietarioApellido1 { get; set; }
|
||||
public string PropietarioApellido2 { get; set; }
|
||||
public DateTime PropietarioFechaNacimiento { get; set; }
|
||||
public int PropietarioSexo { get; set; }
|
||||
|
||||
public string TipoConductor { get; set; }
|
||||
public DateTime FechaPermisoConduccion { get; set; }
|
||||
public string ConductorIdEntidad { get; set; }
|
||||
public string ConductorDocumento { get; set; }
|
||||
public string ConductorNombre { get; set; }
|
||||
public string ConductorApellido1 { get; set; }
|
||||
public string ConductorApellido2 { get; set; }
|
||||
public int ConductorSexo { get; set; }
|
||||
public DateTime ConductorFechaNacimiento { get; set; }
|
||||
|
||||
public string FechaEfecto { get; set; }
|
||||
public string IBAN { get; set; }
|
||||
public string CombinacionAccidentes { get; set; }
|
||||
public string UsoVehiculo { get; set; }
|
||||
public string PrimaTotal { get; set; }
|
||||
}
|
||||
}
|
||||
37
bdAsegasa/Presupuestos/TractoresEuropAssistance.cs
Normal file
37
bdAsegasa/Presupuestos/TractoresEuropAssistance.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class TractoresEuropAssistance
|
||||
{
|
||||
public string Matricula { get; set; }
|
||||
public string Marca { get; set; }
|
||||
public string Modelo { get; set; }
|
||||
public string Version { get; set; }
|
||||
public DateTime FechaMatriculacion { get; set; }
|
||||
|
||||
public string CIF { get; set; }
|
||||
public string RazonSocial { get; set; }
|
||||
public DateTime FechaNacimiento { get; set; }
|
||||
public string EstadoCivil { get; set; }
|
||||
public string Sexo { get; set; }
|
||||
public string Telefono1 { get; set; }
|
||||
public string Telefono2 { get; set; }
|
||||
public string Email { get; set; }
|
||||
|
||||
public string FechaEfecto { get; set; }
|
||||
public string FechaVencimiento { get; set; }
|
||||
|
||||
public string Direccion { get; set; }
|
||||
public string CodigoPostal { get; set; }
|
||||
public string CodigoPoblacion { get; set; }
|
||||
public string Poblacion { get; set; }
|
||||
public string CodigoProvincia { get; set; }
|
||||
public string Provincia { get; set; }
|
||||
|
||||
public string IBAN { get; set; }
|
||||
}
|
||||
}
|
||||
30
bdAsegasa/Presupuestos/TransportexAXA.cs
Normal file
30
bdAsegasa/Presupuestos/TransportexAXA.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace bdAsegasa.Presupuestos
|
||||
{
|
||||
[Serializable]
|
||||
[NotMapped]
|
||||
public class TransportexAXA
|
||||
{
|
||||
public string TomadorCIF { get; set; }
|
||||
public string TomadorNombre { get; set; }
|
||||
public string TomadorApellidos { get; set; }
|
||||
public string TomadorTelefono { get; set; }
|
||||
public string TomadorEmail { get; set; }
|
||||
public string TomadorDomicilio { get; set; }
|
||||
public string TomadorCodigoPostal { get; set; }
|
||||
public string TomadorPoblacion { get; set; }
|
||||
public string TomadorProvincia { get; set; }
|
||||
public string TomadorCodigoMunicipio { get; set; }
|
||||
|
||||
public string MatriculaRemolque { get; set; }
|
||||
public string CalidadTomador { get; set; }
|
||||
public string MedioTransporte { get; set; }
|
||||
public string CapitalElegido { get; set; }
|
||||
|
||||
public string IBAN { get; set; }
|
||||
public DateTime FechaEfecto { get; set; }
|
||||
public DateTime FechaVencimiento { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user