using System; using System.Collections.Generic; using PropertyChanged; namespace bdGrupoSanchoToro.db; [AddINotifyPropertyChangedInterface] public partial class entidades { public int idEntidad { get; set; } public string? NIF { get; set; } public string? RazonSocial { get; set; } public string? Telefono1 { get; set; } public string? Telefono2 { get; set; } public string? Telefono3 { get; set; } public string? FAX { get; set; } public string? Email { get; set; } public string? IBAN { get; set; } public int? idTipoPago { get; set; } public string? Observaciones { get; set; } public bool EsCliente { get; set; } public bool EsProveedor { get; set; } public string? PersonaContacto { get; set; } public double Descuento { get; set; } public DateOnly? FechaAlta { get; set; } public DateOnly? FechaBaja { get; set; } public int? idUsuarioCreador { get; set; } public int? idUsuarioModificador { get; set; } public string? Codigo_Cliente_Ant { get; set; } public string? Codigo_Proveedor_Ant { get; set; } public string? Direccion { get; set; } public string? CodigoPostal { get; set; } public string? CodigoMunicipio { get; set; } public int? idTipo { get; set; } public int TipoImpresionAlbaranEntrega { get; set; } public string? Email2 { get; set; } public int idEmpresa { get; set; } public virtual municipios? CodigoMunicipioNavigation { get; set; } public virtual ICollection albaranes { get; set; } = new List(); public virtual ICollection articulos { get; set; } = new List(); public virtual ICollection correos { get; set; } = new List(); public virtual ICollection eventos { get; set; } = new List(); public virtual ICollection expedientesentidades { get; set; } = new List(); public virtual ICollection facturas { get; set; } = new List(); public virtual ICollection facturasrecibidas { get; set; } = new List(); public virtual empresas idEmpresaNavigation { get; set; } = null!; public virtual enumeraciones? idTipoPagoNavigation { get; set; } public virtual usuarios? idUsuarioCreadorNavigation { get; set; } public virtual usuarios? idUsuarioModificadorNavigation { get; set; } public virtual ICollection presupuestos { get; set; } = new List(); }