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,41 @@
partial Public Class amortizacionrecibos
Public ReadOnly Property Tomador As String
Get
Return Me.recibos.polizassg.Tomador.RazonSocial
End Get
End Property
Public ReadOnly Property Compania As String
Get
Return Me.recibos.polizassg.companias.Nombre
End Get
End Property
Public ReadOnly Property Ramo As String
Get
Return Me.recibos.polizassg.ramos.Descripcion
End Get
End Property
End Class
Public Class ve_amortizacionrecibos
Public Property idAmortizacion As Integer
Public Property idRecibo As Integer?
Public Property FechaInicioAmortizacion As Date
Public Property FechaFinAmortizacion As Date
Public Property PorcentajeAnual As Integer?
Public Property FechaBaja As Date?
Public Property idMotivoBaja As Integer?
Public Property idEmpresa As Integer
Public Property NumeroCuenta As String
Public Property Observaciones As String
Public Property FechaAlta As Date?
Public Property CodigoRecibo As String
Public Property TotalRecibo As Double
Public Property Ramo As String
Public Property Compañía As String
Public Property Tomador As String
Public Property CIFTomador As String
Public Property CausaBaja As String
Public Property Empresa As String
End Class