Agregar archivos de proyecto.

This commit is contained in:
2026-01-23 12:45:41 +01:00
parent 5ed4e0bc46
commit c8d1044267
237 changed files with 34721 additions and 0 deletions

View 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; }
}