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,28 @@
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace bdAsegasa.Presupuestos
{
[Serializable]
[NotMapped]
public class RCMaquinariaAgricola
{
public string AseguradoCIF { get; set; }
public string AseguradoNombre { get; set; }
public string AseguradoApellidos { get; set; }
public string AseguradoDireccion { get; set; }
public string AseguradoCodigoPostal { get; set; }
public string CodigoMunicipio { get; set; }
public string AseguradoPoblacion { get; set; }
public string AseguradoTelefono1 { get; set; }
public string AseguradoTelefono2 { get; set; }
public string AseguradoCorreo { get; set; }
public DateTime FechaEfecto { get; set; }
public string FechaVencimiento { get; set; }
public string IBAN { get; set; }
public string Matricula { get; set; }
public string Cobertura { get; set; }
public string Elegida { get; set; }
public string PrimaTotal { get; set; }
}
}