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 { get; set; } = new List(); public virtual ICollection cajas { get; set; } = new List(); public virtual ICollection cuentascorreo { get; set; } = new List(); public virtual ICollection entidades { get; set; } = new List(); public virtual ficheros? idLogo1Navigation { get; set; } public virtual ficheros? idLogo2Navigation { get; set; } public virtual ICollection plantillas { get; set; } = new List(); public virtual ICollection productos { get; set; } = new List(); public virtual ICollection seriesfacturas { get; set; } = new List(); }