72 lines
2.8 KiB
C#
72 lines
2.8 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace bdAsegasa.Presupuestos
|
|
{
|
|
[Serializable]
|
|
[NotMapped]
|
|
public class RCSociosZurich
|
|
{
|
|
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 PropietarioCIF { get; set; }
|
|
public string PropietarioNombre { get; set; }
|
|
public string PropietarioApellidos { get; set; }
|
|
public string PropietarioTelefono { get; set; }
|
|
public string PropietarioTelefono2 { 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 double Dehesa { get; set; }
|
|
public double SuperficieCosechable { get; set; }
|
|
public double CotoDeCaza { get; set; }
|
|
public double VidaPrivada { get; set; }
|
|
public int CabezasVacuno { get; set; }
|
|
public int CabezasOvino { get; set; }
|
|
public int CabezasPorcino { get; set; }
|
|
public int CabezasEquino { get; set; }
|
|
public int CabezasGanadoBravo { get; set; }
|
|
|
|
public string NumeroRega { get; set; }
|
|
public string CodigoGanadero { get; set; }
|
|
public string Observaciones { get; set; }
|
|
public string SumaContratar { get; set; }
|
|
|
|
public string IBAN { get; set; }
|
|
public DateTime FechaEfecto { get; set; }
|
|
public DateTime FechaVencimiento { get; set; }
|
|
public string FormaPago { get; set; }
|
|
public string TipoRC { get; set; }
|
|
|
|
public double OpcionA { get; set; }
|
|
public double OpcionB { get; set; }
|
|
public double OpcionC { get; set; }
|
|
|
|
public double PrimaNetaA { get; set; }
|
|
public double PrimaNetaB { get; set; }
|
|
public double PrimaNetaC { get; set; }
|
|
|
|
public double ImpuestosA { get; set; }
|
|
public double ImpuestosB { get; set; }
|
|
public string ImpuestosC { get; set; }
|
|
|
|
public double PrimaTotalA { get; set; }
|
|
public double PrimaTotalB { get; set; }
|
|
public double PrimaTotalC { get; set; }
|
|
}
|
|
}
|