Files
SanchoToro/bdGrupoSanchoToro/db/articulos.cs
2026-01-30 11:09:47 +01:00

54 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class articulos
{
public int idArticulo { get; set; }
public int? idProducto { get; set; }
public string? CodigoArticulo { get; set; }
public string? NumeroSerie { get; set; }
public int? idProveedor { get; set; }
public DateOnly? FechaFinGarantia { get; set; }
public DateOnly? FechaAlta { get; set; }
public DateOnly? FechaBaja { get; set; }
public int? idDetalleFra { get; set; }
public int? idDetalleFraVenta { get; set; }
public int? idFichero { get; set; }
public string? Matricula { get; set; }
public string? Observaciones { get; set; }
public virtual ICollection<detallepresupuesto> detallepresupuesto { get; set; } = new List<detallepresupuesto>();
public virtual ICollection<detallesalbaranes> detallesalbaranes { get; set; } = new List<detallesalbaranes>();
public virtual ICollection<expedientesarticulos> expedientesarticulos { get; set; } = new List<expedientesarticulos>();
public virtual gruasparticulares? gruasparticulares { get; set; }
public virtual detallesfacturas? idDetalleFraNavigation { get; set; }
public virtual detallesfacturasrecibidas? idDetalleFraVentaNavigation { get; set; }
public virtual ficheros? idFicheroNavigation { get; set; }
public virtual productos? idProductoNavigation { get; set; }
public virtual entidades? idProveedorNavigation { get; set; }
}