Files
Asegasa.NET/bdAsegasa/db/agentes.cs

126 lines
3.7 KiB
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdAsegasa.db;
[AddINotifyPropertyChangedInterface]
public partial class agentes
{
public int idAgente { get; set; }
public string? Codigo { get; set; }
public string? Nombre { get; set; }
/// <summary>
/// tabla direcciones
/// </summary>
public int? idDireccion { get; set; }
public string? CIF { get; set; }
public DateOnly? FechaAlta { get; set; }
public DateOnly? FechaBaja { get; set; }
public string? Telefono1 { get; set; }
public string? Telefono2 { get; set; }
public string? Fax { get; set; }
public string? Clave { get; set; }
public double? IRPF { get; set; }
public double? LimiteCondicionesGenerales { get; set; }
public double? ComisionMenorIgualLimiteEmision { get; set; }
public double? ComisionMayorLimiteEmision { get; set; }
public double? ComisionMenorIgualLimiteCartera { get; set; }
public double? ComisionMayorLimiteCartera { get; set; }
/// <summary>
/// tabla enumeraciones
/// </summary>
public int? idInspector { get; set; }
public string? CuentaContableC { get; set; }
public string? CuentaContableR { get; set; }
public string? IBAN { get; set; }
/// <summary>
/// enumeraciones Formas de pago
/// </summary>
public int? idFormaPago { get; set; }
public double? Rapell { get; set; }
/// <summary>
/// enumeraciones rutas
/// </summary>
public int? idRuta { get; set; }
public string? Observaciones { get; set; }
public string? Email { get; set; }
public string? NumeroColegiado { get; set; }
public uint? idSuborganizacion { get; set; }
public string? codigoUsuarioAvant2 { get; set; }
public string? contrasenaAvant2 { get; set; }
public string? MapeoCaser { get; set; }
public string? MapeoAllianz { get; set; }
public string? MapeoPelayo { get; set; }
public bool SinAcreditacion { get; set; }
public string? hashContrasena { get; set; }
public virtual ICollection<avant2__sso> avant2__sso { get; set; } = new List<avant2__sso>();
public virtual ICollection<comisionesagentes> comisionesagentes { get; set; } = new List<comisionesagentes>();
public virtual ICollection<expedientesagentes> expedientesagentes { get; set; } = new List<expedientesagentes>();
public virtual ICollection<historicocomisiones> historicocomisiones { get; set; } = new List<historicocomisiones>();
public virtual direcciones? idDireccionNavigation { get; set; }
public virtual enumeraciones? idFormaPagoNavigation { get; set; }
public virtual usuarios? idInspectorNavigation { get; set; }
public virtual enumeraciones? idRutaNavigation { get; set; }
public virtual avant2__suborganizaciones? idSuborganizacionNavigation { get; set; }
public virtual ICollection<incentivos> incentivos { get; set; } = new List<incentivos>();
public virtual ICollection<liquidacionesagentes> liquidacionesagentes { get; set; } = new List<liquidacionesagentes>();
public virtual ICollection<personasdecontactoagentes> personasdecontactoagentes { get; set; } = new List<personasdecontactoagentes>();
public virtual ICollection<polizasagrario> polizasagrario { get; set; } = new List<polizasagrario>();
public virtual ICollection<polizassg> polizassg { get; set; } = new List<polizassg>();
public virtual ICollection<recibos> recibos { get; set; } = new List<recibos>();
public virtual ICollection<regularizacionespagosagentes> regularizacionespagosagentes { get; set; } = new List<regularizacionespagosagentes>();
public virtual ICollection<subagentes> subagentes { get; set; } = new List<subagentes>();
}