64 lines
1.6 KiB
C#
64 lines
1.6 KiB
C#
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!;
|
|
}
|