69 lines
1.5 KiB
C#
69 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class vf_siniestros_estadisticas
|
|
{
|
|
public int idSiniestro { get; set; }
|
|
|
|
/// <summary>
|
|
/// tabla enumeraciones
|
|
/// </summary>
|
|
public int? idCulpa { get; set; }
|
|
|
|
public string? Culpa { get; set; }
|
|
|
|
public DateOnly? FechaAccidente { get; set; }
|
|
|
|
/// <summary>
|
|
/// tabla enumeraciones
|
|
/// </summary>
|
|
public int? idTramitacion { get; set; }
|
|
|
|
public DateOnly? FechaCierre { get; set; }
|
|
|
|
public bool PendienteDeCobro { get; set; }
|
|
|
|
public double? CantidadPagarAsegasa { get; set; }
|
|
|
|
public DateTime? FechaAlta { get; set; }
|
|
|
|
public string? Compania { get; set; }
|
|
|
|
public string? CodigoCia { get; set; }
|
|
|
|
/// <summary>
|
|
/// tabla ramos
|
|
/// </summary>
|
|
public int? idRamo { get; set; }
|
|
|
|
public string? Ramo { get; set; }
|
|
|
|
public string? FamiliaRamo { get; set; }
|
|
|
|
public string? Tomador { get; set; }
|
|
|
|
public string? CIFTomador { get; set; }
|
|
|
|
public string? Telefono1Tomador { get; set; }
|
|
|
|
public string? Telefono2Tomador { get; set; }
|
|
|
|
public string? EmailTomador { get; set; }
|
|
|
|
public string? CodigoAgente { get; set; }
|
|
|
|
public string? Agente { get; set; }
|
|
|
|
public string? Oficina { get; set; }
|
|
|
|
public string? CodigoSubAgente { get; set; }
|
|
|
|
public string? SubAgente { get; set; }
|
|
|
|
public long? NumeroGestiones { get; set; }
|
|
}
|