Agregar archivos de proyecto.
This commit is contained in:
45
bdGrupoSanchoToro/db/articulos.cs
Normal file
45
bdGrupoSanchoToro/db/articulos.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user