98 lines
4.3 KiB
C#
98 lines
4.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class usuarios
|
|
{
|
|
public int idUsuario { get; set; }
|
|
|
|
public string Usuario { get; set; } = null!;
|
|
|
|
public string? Nombre { get; set; }
|
|
|
|
public string? SHA1Passwd { get; set; }
|
|
|
|
public int idGrupobd { get; set; }
|
|
|
|
public int? idGrupo { get; set; }
|
|
|
|
public int? idTema { get; set; }
|
|
|
|
public DateOnly? FechaBaja { get; set; }
|
|
|
|
public string? email { get; set; }
|
|
|
|
public string? Oficina { get; set; }
|
|
|
|
public double? Escala { get; set; }
|
|
|
|
public virtual ICollection<actualizacionessiniestros_eiac> actualizacionessiniestros_eiac { get; set; } = new List<actualizacionessiniestros_eiac>();
|
|
|
|
public virtual ICollection<agentes> agentes { get; set; } = new List<agentes>();
|
|
|
|
public virtual ICollection<asientos> asientos { get; set; } = new List<asientos>();
|
|
|
|
public virtual ICollection<asientosmodelos> asientosmodelos { get; set; } = new List<asientosmodelos>();
|
|
|
|
public virtual ICollection<autorizacionesusuarios> autorizacionesusuarios { get; set; } = new List<autorizacionesusuarios>();
|
|
|
|
public virtual ICollection<companias> companias { get; set; } = new List<companias>();
|
|
|
|
public virtual ICollection<conciliacionesbancarias> conciliacionesbancarias { get; set; } = new List<conciliacionesbancarias>();
|
|
|
|
public virtual ICollection<departamentos> departamentos { get; set; } = new List<departamentos>();
|
|
|
|
public virtual ICollection<departamentosmiembros> departamentosmiembros { get; set; } = new List<departamentosmiembros>();
|
|
|
|
public virtual ICollection<documentospolizasagrario> documentospolizasagrario { get; set; } = new List<documentospolizasagrario>();
|
|
|
|
public virtual ICollection<documentospolizassg> documentospolizassgidUsuarioAdjuntaFicheroNavigation { get; set; } = new List<documentospolizassg>();
|
|
|
|
public virtual ICollection<documentospolizassg> documentospolizassgidUsuarioCompruebaNavigation { get; set; } = new List<documentospolizassg>();
|
|
|
|
public virtual ICollection<documentosvarios> documentosvarios { get; set; } = new List<documentosvarios>();
|
|
|
|
public virtual ICollection<expedientesagentes> expedientesagentes { get; set; } = new List<expedientesagentes>();
|
|
|
|
public virtual ICollection<extractosbancarios> extractosbancarios { get; set; } = new List<extractosbancarios>();
|
|
|
|
public virtual ICollection<ficheroscompanias> ficheroscompanias { get; set; } = new List<ficheroscompanias>();
|
|
|
|
public virtual ICollection<gestionespolizasagrario> gestionespolizasagrario { get; set; } = new List<gestionespolizasagrario>();
|
|
|
|
public virtual ICollection<gestionespolizassg> gestionespolizassg { get; set; } = new List<gestionespolizassg>();
|
|
|
|
public virtual ICollection<gestionesrecibos> gestionesrecibos { get; set; } = new List<gestionesrecibos>();
|
|
|
|
public virtual ICollection<gestionessiniestros> gestionessiniestrosidUsuarioCreadorNavigation { get; set; } = new List<gestionessiniestros>();
|
|
|
|
public virtual ICollection<gestionessiniestros> gestionessiniestrosidUsuarioModificadorNavigation { get; set; } = new List<gestionessiniestros>();
|
|
|
|
public virtual gruposusuarios? idGrupoNavigation { get; set; }
|
|
|
|
public virtual grupobd idGrupobdNavigation { get; set; } = null!;
|
|
|
|
public virtual enumeraciones? idTemaNavigation { get; set; }
|
|
|
|
public virtual ICollection<liquidacionesviajes> liquidacionesviajes { get; set; } = new List<liquidacionesviajes>();
|
|
|
|
public virtual ICollection<mensajes> mensajes { get; set; } = new List<mensajes>();
|
|
|
|
public virtual ICollection<polizassg> polizassg { get; set; } = new List<polizassg>();
|
|
|
|
public virtual ICollection<recibos> recibos { get; set; } = new List<recibos>();
|
|
|
|
public virtual ICollection<sesiones> sesiones { get; set; } = new List<sesiones>();
|
|
|
|
public virtual ICollection<siniestros_eiac> siniestros_eiac { get; set; } = new List<siniestros_eiac>();
|
|
|
|
public virtual ICollection<siniestros> siniestrosidUsuarioCreadorNavigation { get; set; } = new List<siniestros>();
|
|
|
|
public virtual ICollection<siniestros> siniestrosidUsuarioModificadorNavigation { get; set; } = new List<siniestros>();
|
|
|
|
public virtual ICollection<subagentes> subagentes { get; set; } = new List<subagentes>();
|
|
}
|