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,63 @@
using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdAsegasa.db;
[AddINotifyPropertyChangedInterface]
public partial class modificacionespolizasagrario
{
public int idModificacionPolizasAgrario { get; set; }
public int idPolizaAgrario { get; set; }
public DateOnly? fechaModificacion { get; set; }
public double? 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 int idTipoModificacion { get; set; }
public double? descuentoBonificacion { get; set; }
public int idLinea { get; set; }
public double? totalPrevistas { get; set; }
public double? previstasComisionAsegasa { get; set; }
public double? previstasComisionAgente { get; set; }
public double? previstasIncentivoAgente { get; set; }
public double? previstasNIFNuevo { get; set; }
public double? previstasTomadorPropio { get; set; }
public double? previstasIncentivoAsegasa { get; set; }
public virtual planeslineas idLineaNavigation { get; set; } = null!;
public virtual polizasagrario idPolizaAgrarioNavigation { get; set; } = null!;
public virtual enumeraciones idTipoModificacionNavigation { get; set; } = null!;
}