Primera versión estable compatible con linux de WSAsegasa

This commit is contained in:
2025-11-20 16:34:14 +01:00
parent 68ab86be9e
commit 574a139e78
209 changed files with 19093 additions and 16 deletions

View File

@@ -0,0 +1,55 @@
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; }
}