29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
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; }
|
|
}
|
|
}
|