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,40 @@
Public Class CartillaSeguroGenerales
Property Rso As String
Property Cif As String
Property PolizasEntidad As List(Of PolizaGeneral)
Property NumDePolizas As Integer
Property TotalPagados As Double
Property TotalAnulados As Double
Property TotalCia As Double
Property TotalPendiente As Double
Property Cia As String
End Class
Public Class SiniestroGeneral
Property IdSiniestro As Integer
Property RefCompania As String
Property DescripcionSiniestro As String
Property DanoCliente As String
Property DanoContrario As String
Property Culpabilidad As String
Property FechaSiniestro As String
End Class
Public Class PolizaGeneral
Property NumeroPoliza As String
Property Ramo As String
Property Compañia As String
Property RecibosPolizas As List(Of ReciboPoliza)
Property SiniestrosEntidad As List(Of SiniestroGeneral)
End Class
Public Class ReciboPoliza
Property FechaEfecto As Date
Property FechaVencimiento As Date?
Property Importe As Double
Property Matricula As String
Property Duracion As String
Property TipoPago As String
Property FechaPago As String
Property CausaBaja As String
Property FechaBaja As String
Property BienesAsegurados As String
End Class