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,143 @@
using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdAsegasa.db;
[AddINotifyPropertyChangedInterface]
public partial class vf_polagrextendidas
{
public int idPolizaAgrario { get; set; }
public string? referenciaHP { get; set; }
public DateOnly? fechaPropuesta { get; set; }
public string? poliza { get; set; }
public DateOnly? fechaPoliza { get; set; }
public int? idPlanLinea { get; set; }
public string? PlanLineaDescripcion { get; set; }
public string? PlanLinea { get; set; }
public int? idColectivo { get; set; }
public string? Colectivo { get; set; }
public int? idAgente { get; set; }
public string? Agente { get; set; }
public string? CodigoAgente { get; set; }
public int? idCia { get; set; }
public string? Compania { get; set; }
public int? idTomador { get; set; }
public string? Tomador { get; set; }
public string? CIFTomador { get; set; }
public int? idAsegurado { get; set; }
public string? Asegurado { get; set; }
public string? CIFAsegurado { get; set; }
public int? idDomicilioAsegurado { get; set; }
public double? hectareas { get; set; }
public int? animales { get; set; }
public double? descuentoBonificacion { get; set; }
public string? directorio { get; set; }
public bool? fraccionada { get; set; }
public float? porcentajeAplicado { get; set; }
public double? primaComercial { get; set; }
public double? bonificacionRecargo { get; set; }
public double? primaComercialNeta { get; set; }
public double? recargoFLCCS { get; set; }
public double? recargoPrima { get; set; }
public double? subvencionENESA { get; set; }
public double? subvencionCCAA { get; set; }
public double? aCargoTomador { get; set; }
public double? segunAgroSeguro { get; set; }
public double? diferencia { get; set; }
public string? observaciones { get; set; }
public double? gastoGestionInterna { get; set; }
public double? comisionesIncentivoAgente { get; set; }
public double? comisionesComisionAgente { get; set; }
public double? comisionesIncentivoAsegasa { get; set; }
public double? comisionesComisionAsegasa { get; set; }
public double? comisionesNIFNuevo { get; set; }
public double? comisionesTomadorPropio { get; set; }
public double? totalComisiones { get; set; }
public double? previstasIncentivoAgente { get; set; }
public double? previstasComisionAgente { get; set; }
public double? previstasIncentivoAsegasa { get; set; }
public double? previstasComisionAsegasa { get; set; }
public double? previstasNIFNuevo { get; set; }
public double? previstasTomadorPropio { get; set; }
public double? totalPrevistas { get; set; }
public int? idSubagente { get; set; }
public string? emailAsegurado { get; set; }
public string? telefono1Asegurado { get; set; }
public string? telefono2Asegurado { get; set; }
public int? anoContable { get; set; }
public int? trimestreContable { get; set; }
public string? DireccionAsegurado { get; set; }
public string? CodigoMunicipioAsegurado { get; set; }
public string? CodigoPostalAsegurado { get; set; }
public string? NombreMunicipioAsegurado { get; set; }
public string? CodigoProvinciaAsegurado { get; set; }
public string? NombreProvinciaAsegurado { get; set; }
public string? Grupo { get; set; }
}