41 lines
1.3 KiB
VB.net
41 lines
1.3 KiB
VB.net
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
|