agregado procesos y bd clases

This commit is contained in:
2026-04-28 11:52:16 +02:00
parent 59a774c397
commit cd2e8b8530
251 changed files with 56881 additions and 49 deletions

View File

@@ -0,0 +1,44 @@
Partial Public Class modificacionespolizasagrario
Public ReadOnly Property PorIncAge As Double
Get
Return Me.previstasIncentivoAgente / Me.primaComercialNeta * 100
End Get
End Property
Public ReadOnly Property PorComAge As Double
Get
Return Me.previstasComisionAgente / Me.primaComercialNeta * 100
End Get
End Property
Public ReadOnly Property PorIncAse As Double
Get
Return Me.previstasIncentivoAsegasa / Me.primaComercialNeta * 100
End Get
End Property
Public ReadOnly Property PorComAse As Double
Get
Return Me.previstasComisionAsegasa / Me.primaComercialNeta * 100
End Get
End Property
Public ReadOnly Property PorNifNue As Double
Get
Return Me.previstasNIFNuevo / Me.primaComercialNeta * 100
End Get
End Property
Public ReadOnly Property PorTomPro As Double
Get
Return Me.previstasTomadorPropio / Me.primaComercialNeta * 100
End Get
End Property
Public ReadOnly Property PorTotComPre As Double
Get
Return Me.totalPrevistas / Me.primaComercialNeta * 100
End Get
End Property
End Class