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 empresas
{
public int idEmpresa { get; set; }
public string RazonSocial { get; set; } = null!;
public DateOnly? FechaBaja { get; set; }
public int? idLogo1 { get; set; }
public int? idLogo2 { get; set; }
public string? Domicilio { get; set; }
public string? Poblacion { get; set; }
public string? CIF { get; set; }
public bool DescAmpliadaEnFE { get; set; }
public virtual ICollection<almacenes> almacenes { get; set; } = new List<almacenes>();
public virtual ICollection<cajas> cajas { get; set; } = new List<cajas>();
public virtual ICollection<cuentascorreo> cuentascorreo { get; set; } = new List<cuentascorreo>();
public virtual ICollection<entidades> entidades { get; set; } = new List<entidades>();
public virtual ficheros? idLogo1Navigation { get; set; }
public virtual ficheros? idLogo2Navigation { get; set; }
public virtual ICollection<plantillas> plantillas { get; set; } = new List<plantillas>();
public virtual ICollection<productos> productos { get; set; } = new List<productos>();
public virtual ICollection<seriesfacturas> seriesfacturas { get; set; } = new List<seriesfacturas>();
}