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,30 @@
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace bdAsegasa.Presupuestos
{
[Serializable]
[NotMapped]
public class TransportexAXA
{
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 MatriculaRemolque { get; set; }
public string CalidadTomador { get; set; }
public string MedioTransporte { get; set; }
public string CapitalElegido { get; set; }
public string IBAN { get; set; }
public DateTime FechaEfecto { get; set; }
public DateTime FechaVencimiento { get; set; }
}
}