48 lines
1.8 KiB
C#
48 lines
1.8 KiB
C#
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; }
|
|
}
|
|
}
|