56 lines
1.3 KiB
C#
56 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class vf_siniestros_eiac_extendidos
|
|
{
|
|
public int idSiniestroEIAC { get; set; }
|
|
|
|
public int? idSiniestro { get; set; }
|
|
|
|
public int? idPoliza { get; set; }
|
|
|
|
public string NumeroPoliza { get; set; } = null!;
|
|
|
|
public string? NumeroSuplemento { get; set; }
|
|
|
|
public int? idFicheroCompania { get; set; }
|
|
|
|
public string idSiniestroEntidad { get; set; } = null!;
|
|
|
|
public DateTime FechaDeclaracion { get; set; }
|
|
|
|
public DateTime FechaOcurrencia { get; set; }
|
|
|
|
public int PosicionSiniestro { get; set; }
|
|
|
|
public string DescripcionSiniestro { get; set; } = null!;
|
|
|
|
public int TipologiaSiniestro { get; set; }
|
|
|
|
public double? ImporteIndemnizacion { get; set; }
|
|
|
|
public double? ImporteReserva { get; set; }
|
|
|
|
public int? idLugarSiniestro { get; set; }
|
|
|
|
public int idCompania { get; set; }
|
|
|
|
public int? SituacionAsegasa { get; set; }
|
|
|
|
public DateTime? FechaSituacion { get; set; }
|
|
|
|
public int? idUsuarioSituacion { get; set; }
|
|
|
|
public DateOnly? FechaEfecto { get; set; }
|
|
|
|
public string? Tomador { get; set; }
|
|
|
|
public string? Compania { get; set; }
|
|
|
|
public string? Direccion { get; set; }
|
|
}
|