Files
SanchoToro/bdGrupoSanchoToro/db/entidades.cs
2026-01-23 12:45:41 +01:00

92 lines
2.5 KiB
C#

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> albaranes { get; set; } = new List<albaranes>();
public virtual ICollection<articulos> articulos { get; set; } = new List<articulos>();
public virtual ICollection<correos> correos { get; set; } = new List<correos>();
public virtual ICollection<eventos> eventos { get; set; } = new List<eventos>();
public virtual ICollection<expedientesentidades> expedientesentidades { get; set; } = new List<expedientesentidades>();
public virtual ICollection<facturas> facturas { get; set; } = new List<facturas>();
public virtual ICollection<facturasrecibidas> facturasrecibidas { get; set; } = new List<facturasrecibidas>();
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> presupuestos { get; set; } = new List<presupuestos>();
}