40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class direcciones
|
|
{
|
|
public int idDireccion { get; set; }
|
|
|
|
public string? Direccion { get; set; }
|
|
|
|
public int? idEntidad { get; set; }
|
|
|
|
public string? CodigoPostal { get; set; }
|
|
|
|
public string? CodigoMunicipio { get; set; }
|
|
|
|
public int? idTipo { get; set; }
|
|
|
|
public virtual municipios? CodigoMunicipioNavigation { get; set; }
|
|
|
|
public virtual ICollection<agentes> agentes { get; set; } = new List<agentes>();
|
|
|
|
public virtual ICollection<companias> companias { get; set; } = new List<companias>();
|
|
|
|
public virtual ICollection<entidades> entidades { get; set; } = new List<entidades>();
|
|
|
|
public virtual ICollection<entidadespolizas> entidadespolizas { get; set; } = new List<entidadespolizas>();
|
|
|
|
public virtual entidades? idEntidadNavigation { get; set; }
|
|
|
|
public virtual enumeraciones? idTipoNavigation { get; set; }
|
|
|
|
public virtual ICollection<polizasagrario> polizasagrario { get; set; } = new List<polizasagrario>();
|
|
|
|
public virtual ICollection<siniestros_eiac> siniestros_eiac { get; set; } = new List<siniestros_eiac>();
|
|
}
|