50 lines
1.5 KiB
C#
50 lines
1.5 KiB
C#
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 string Codigo { get; set; } = null!;
|
|
|
|
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<ejercicioscontables> ejercicioscontables { get; set; } = new List<ejercicioscontables>();
|
|
|
|
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>();
|
|
}
|