Primera versión estable compatible con linux de WSAsegasa
This commit is contained in:
39
bdAsegasa/db/direcciones.cs
Normal file
39
bdAsegasa/db/direcciones.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user