54 lines
2.2 KiB
C#
54 lines
2.2 KiB
C#
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; }
|
|
}
|
|
}
|