agregado procesos y bd clases
This commit is contained in:
95
bdAsegasa/db/facturas.cs
Normal file
95
bdAsegasa/db/facturas.cs
Normal file
@@ -0,0 +1,95 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdAsegasa.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class facturas
|
||||
{
|
||||
public int idFactura { get; set; }
|
||||
|
||||
public string? NumeroFactura { get; set; }
|
||||
|
||||
public DateOnly? FechaFactura { get; set; }
|
||||
|
||||
public DateTime? FechaEmision { get; set; }
|
||||
|
||||
public int? idCliente { get; set; }
|
||||
|
||||
public double? BaseImponibleExenta { get; set; }
|
||||
|
||||
public double? BaseImponible1 { get; set; }
|
||||
|
||||
public double? BaseImponible2 { get; set; }
|
||||
|
||||
public double? BaseImponible3 { get; set; }
|
||||
|
||||
public double? PorcentajeIVA1 { get; set; }
|
||||
|
||||
public double? PorcentajeIVA2 { get; set; }
|
||||
|
||||
public double? PorcentajeIVA3 { get; set; }
|
||||
|
||||
public double? CuotaIVA1 { get; set; }
|
||||
|
||||
public double? CuotaIVA2 { get; set; }
|
||||
|
||||
public double? CuotaIVA3 { get; set; }
|
||||
|
||||
public double? TotalBaseImponible { get; set; }
|
||||
|
||||
public double? PorcentajeIRPF { get; set; }
|
||||
|
||||
public double? IRPF { get; set; }
|
||||
|
||||
public double? TotalIVA { get; set; }
|
||||
|
||||
public double? TotalFactura { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public int? idDatosClienteOriginal { get; set; }
|
||||
|
||||
public int? idSerieFactura { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public string? ObservacionesAImprimir { get; set; }
|
||||
|
||||
public double? ImportePagado { get; set; }
|
||||
|
||||
public DateOnly? FechaPago { get; set; }
|
||||
|
||||
public string? DocumentoIdentidad { get; set; }
|
||||
|
||||
public string? RazonSocial { get; set; }
|
||||
|
||||
public string? Direccion { get; set; }
|
||||
|
||||
public string? CodigoPostal { get; set; }
|
||||
|
||||
public string? CodigoMunicipio { get; set; }
|
||||
|
||||
public DateTime? FechaEnvioAsesoria { get; set; }
|
||||
|
||||
public int? idFacturaRectificativa { get; set; }
|
||||
|
||||
public int? idPais { get; set; }
|
||||
|
||||
public int? TipoDocumentoIdentidad { get; set; }
|
||||
|
||||
public virtual municipios? CodigoMunicipioNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<detallesfacturas> detallesfacturas { get; set; } = new List<detallesfacturas>();
|
||||
|
||||
public virtual entidades? idClienteNavigation { get; set; }
|
||||
|
||||
public virtual ficheros? idDatosClienteOriginalNavigation { get; set; }
|
||||
|
||||
public virtual enumeraciones? idPaisNavigation { get; set; }
|
||||
|
||||
public virtual seriesfacturas? idSerieFacturaNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user