Agregar archivos de proyecto.
This commit is contained in:
61
bdGrupoSanchoToro/db/ficheros.cs
Normal file
61
bdGrupoSanchoToro/db/ficheros.cs
Normal file
@@ -0,0 +1,61 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class ficheros
|
||||
{
|
||||
public int idFichero { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public DateTime Fecha { get; set; }
|
||||
|
||||
public int? idTipo { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public byte[]? Fichero { get; set; }
|
||||
|
||||
public string? NombreFichero { get; set; }
|
||||
|
||||
public int? idAplicacion { get; set; }
|
||||
|
||||
public virtual ICollection<articulos> articulos { get; set; } = new List<articulos>();
|
||||
|
||||
public virtual ICollection<correos> correos { get; set; } = new List<correos>();
|
||||
|
||||
public virtual ICollection<detallesfacturas> detallesfacturas { get; set; } = new List<detallesfacturas>();
|
||||
|
||||
public virtual ICollection<documentosfacturas> documentosfacturas { get; set; } = new List<documentosfacturas>();
|
||||
|
||||
public virtual ICollection<documentosfacturasrecibidas> documentosfacturasrecibidas { get; set; } = new List<documentosfacturasrecibidas>();
|
||||
|
||||
public virtual ICollection<documentospresupuestos> documentospresupuestos { get; set; } = new List<documentospresupuestos>();
|
||||
|
||||
public virtual ICollection<empresas> empresasidLogo1Navigation { get; set; } = new List<empresas>();
|
||||
|
||||
public virtual ICollection<empresas> empresasidLogo2Navigation { get; set; } = new List<empresas>();
|
||||
|
||||
public virtual ICollection<expedientesentidades> expedientesentidades { get; set; } = new List<expedientesentidades>();
|
||||
|
||||
public virtual ICollection<facturas> facturas { get; set; } = new List<facturas>();
|
||||
|
||||
public virtual ICollection<facturasrecibidas> facturasrecibidasidDatosProveedorOriginalNavigation { get; set; } = new List<facturasrecibidas>();
|
||||
|
||||
public virtual ICollection<facturasrecibidas> facturasrecibidasidFicheroNavigation { get; set; } = new List<facturasrecibidas>();
|
||||
|
||||
public virtual ICollection<ficherosadjuntos> ficherosadjuntos { get; set; } = new List<ficherosadjuntos>();
|
||||
|
||||
public virtual enumeraciones? idTipoNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<movimientoscaja> movimientoscaja { get; set; } = new List<movimientoscaja>();
|
||||
|
||||
public virtual ICollection<plantillas> plantillas { get; set; } = new List<plantillas>();
|
||||
|
||||
public virtual ICollection<presupuestos> presupuestos { get; set; } = new List<presupuestos>();
|
||||
|
||||
public virtual ICollection<procesos> procesos { get; set; } = new List<procesos>();
|
||||
}
|
||||
Reference in New Issue
Block a user