agregado procesos y bd clases

This commit is contained in:
2026-04-28 11:52:16 +02:00
parent 59a774c397
commit cd2e8b8530
251 changed files with 56881 additions and 49 deletions

View File

@@ -0,0 +1,62 @@
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace bdAsegasa.Presupuestos
{
[Serializable]
[NotMapped]
public class RCPerros
{
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 CoberturaElegida { get; set; }
public string PrecioCobertura { get; set; }
public int NumeroPerrosPeligrosos { get; set; }
public int NumeroPerrosNoPeligrosos { get; set; }
public double PrimaPerrosPeligrosos { get; set; }
public double PrimaPerrosNoPeligrosos { get; set; }
public double PrecioPerrosPeligrosos { get; set; }
public double PrecioPerrosNoPeligrosos { get; set; }
public string PrimeroRaza { get; set; }
public string PrimeroMicrochip { get; set; }
public string PrimeroNombre { get; set; }
public DateTime PrimeroFechaNacimiento { get; set; }
public string SegundoRaza { get; set; }
public string SegundoMicrochip { get; set; }
public string SegundoNombre { get; set; }
public DateTime SegundoFechaNacimiento { get; set; }
public string TerceroRaza { get; set; }
public string TerceroMicrochip { get; set; }
public string TerceroNombre { get; set; }
public DateTime TerceroFechaNacimiento { get; set; }
public string Observaciones { get; set; }
public string IBAN { get; set; }
public DateTime FechaEfecto { get; set; }
public DateTime FechaVencimiento { get; set; }
public string TipoPerro { get; set; }
}
}