65 lines
2.7 KiB
C#
65 lines
2.7 KiB
C#
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; }
|
|
}
|
|
}
|