Files
2026-04-28 11:52:16 +02:00

62 lines
2.5 KiB
C#

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; }
}
}