46 lines
1.2 KiB
C#
46 lines
1.2 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 string? NumeroFraCompra { get; set; }
|
|
|
|
public DateOnly? FechaCompra { get; set; }
|
|
|
|
public DateOnly? FechaFinGarantia { get; set; }
|
|
|
|
public DateOnly? FechaBaja { get; set; }
|
|
|
|
public string? Observaciones { get; set; }
|
|
|
|
public double? PrecioCompra { get; set; }
|
|
|
|
public int? idFichero { get; set; }
|
|
|
|
public string? Averias { get; set; }
|
|
|
|
public virtual ICollection<detallepresupuesto> detallepresupuesto { get; set; } = new List<detallepresupuesto>();
|
|
|
|
public virtual ICollection<detallesalbaranes> detallesalbaranes { get; set; } = new List<detallesalbaranes>();
|
|
|
|
public virtual ficheros? idFicheroNavigation { get; set; }
|
|
|
|
public virtual productos? idProductoNavigation { get; set; }
|
|
|
|
public virtual entidades? idProveedorNavigation { get; set; }
|
|
}
|