using System; using System.Collections.Generic; using PropertyChanged; namespace bdGrupoSanchoToro.db; [AddINotifyPropertyChangedInterface] public partial class facturasrecibidas { public int idFactura { get; set; } public string NumeroFactura { get; set; } = null!; public DateOnly FechaFactura { get; set; } public DateOnly FechaRegistro { get; set; } public int idProveedor { 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 TotalBaseImponible { get; set; } public double TotalIVA { get; set; } public double PorcentajeIRPF { get; set; } public double IRPF { get; set; } public double TotalFactura { get; set; } public double ImportePagado { get; set; } public DateOnly? FechaPago { get; set; } public int? idUsuario { get; set; } public int? idDatosProveedorOriginal { get; set; } public int? idFichero { get; set; } public double? CuotaIVA1 { get; set; } public double? CuotaIVA2 { get; set; } public double? CuotaIVA3 { get; set; } public string? Observaciones { get; set; } public string? NIF { 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? idCategoria { get; set; } public virtual ICollection detallesfacturasrecibidas { get; set; } = new List(); public virtual ICollection documentosfacturasrecibidas { get; set; } = new List(); public virtual enumeraciones? idCategoriaNavigation { get; set; } public virtual ficheros? idDatosProveedorOriginalNavigation { get; set; } public virtual ficheros? idFicheroNavigation { get; set; } public virtual entidades idProveedorNavigation { get; set; } = null!; public virtual usuarios? idUsuarioNavigation { get; set; } public virtual ICollection movimientoscaja { get; set; } = new List(); }