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,306 @@
<Serializable>
Public Class TarificadorMaquinariaPlusUltra
Private _tomadorCIF As String
Public Property TomadorCIF() As String
Get
Return _tomadorCIF
End Get
Set(ByVal value As String)
_tomadorCIF = value
End Set
End Property
Private _tomadorNombre As String
Public Property TomadorNombre() As String
Get
Return _tomadorNombre
End Get
Set(ByVal value As String)
_tomadorNombre = value
End Set
End Property
Private _tomadorApellidos As String
Public Property TomadorApellidos() As String
Get
Return _tomadorApellidos
End Get
Set(ByVal value As String)
_tomadorApellidos = value
End Set
End Property
Private _tomadorTelefono As String
Public Property TomadorTelefono() As String
Get
Return _tomadorTelefono
End Get
Set(ByVal value As String)
_tomadorTelefono = value
End Set
End Property
Private _tomadorTelefono2 As String
Public Property TomadorTelefono2() As String
Get
Return _tomadorTelefono2
End Get
Set(ByVal value As String)
_tomadorTelefono2 = value
End Set
End Property
Private _tomadorEmail As String
Public Property TomadorEmail() As String
Get
Return _tomadorEmail
End Get
Set(ByVal value As String)
_tomadorEmail = value
End Set
End Property
Private _tomadorDomicilio As String
Public Property TomadorDomicilio() As String
Get
Return _tomadorDomicilio
End Get
Set(ByVal value As String)
_tomadorDomicilio = value
End Set
End Property
Private _tomadorCodigoPostal As String
Public Property TomadorCodigoPostal() As String
Get
Return _tomadorCodigoPostal
End Get
Set(ByVal value As String)
_tomadorCodigoPostal = value
End Set
End Property
Private _tomadorPoblacion As String
Public Property TomadorPoblacion() As String
Get
Return _tomadorPoblacion
End Get
Set(ByVal value As String)
_tomadorPoblacion = value
End Set
End Property
Private _tomadorProvincia As String
Public Property TomadorProvincia() As String
Get
Return _tomadorProvincia
End Get
Set(ByVal value As String)
_tomadorProvincia = value
End Set
End Property
Private _tomadorCodigoMunicipio As String
Public Property TomadorCodigoMunicipio() As String
Get
Return _tomadorCodigoMunicipio
End Get
Set(ByVal value As String)
_tomadorCodigoMunicipio = value
End Set
End Property
Private _TipoMaquinaria As String
Public Property TipoMaquinaria() As String
Get
Return _TipoMaquinaria
End Get
Set(ByVal value As String)
_TipoMaquinaria = value
End Set
End Property
Private _UsoAlQueSeDestina As String
Public Property UsoAlQueSeDestina() As String
Get
Return _UsoAlQueSeDestina
End Get
Set(ByVal value As String)
_UsoAlQueSeDestina = value
End Set
End Property
Private _ValorMaquinaria As Double
Public Property ValorMaquinaria() As Double
Get
Return _ValorMaquinaria
End Get
Set(ByVal value As Double)
_ValorMaquinaria = value
End Set
End Property
Private _valorAccesorios As Double
Public Property ValorAccesorios() As Double
Get
Return _valorAccesorios
End Get
Set(ByVal value As Double)
_valorAccesorios = value
End Set
End Property
Private _ExistenciasProductoRecolectado As String
Public Property ExistenciasProductoRecolectado() As String
Get
Return _ExistenciasProductoRecolectado
End Get
Set(ByVal value As String)
_ExistenciasProductoRecolectado = value
End Set
End Property
Private _marca As String
Public Property Marca() As String
Get
Return _marca
End Get
Set(ByVal value As String)
_marca = value
End Set
End Property
Private _modelo As String
Public Property Modelo() As String
Get
Return _modelo
End Get
Set(ByVal value As String)
_modelo = value
End Set
End Property
Private _fechaMatriculacion As Date
Public Property FechaMatriculacion() As Date
Get
Return _fechaMatriculacion
End Get
Set(ByVal value As Date)
_fechaMatriculacion = value
End Set
End Property
Private _Antiguedad As String
Public Property Antiguedad() As String
Get
Return _Antiguedad
End Get
Set(ByVal value As String)
_Antiguedad = value
End Set
End Property
Private _estado As String
Public Property Estado() As String
Get
Return _estado
End Get
Set(ByVal value As String)
_estado = value
End Set
End Property
Private _garantiaIncendio As String
Public Property GarantiaIncendio() As String
Get
Return _garantiaIncendio
End Get
Set(ByVal value As String)
_garantiaIncendio = value
End Set
End Property
Private _garantiaResponsabilidadCivil As String
Public Property GarantiaResponsabilidadCivil() As String
Get
Return _garantiaResponsabilidadCivil
End Get
Set(ByVal value As String)
_garantiaResponsabilidadCivil = value
End Set
End Property
Private _riesgosExtensivos As String
Public Property RiesgosExtensivos() As String
Get
Return _riesgosExtensivos
End Get
Set(ByVal value As String)
_riesgosExtensivos = value
End Set
End Property
Private _paralizacion As String
Public Property Paralizacion() As String
Get
Return _paralizacion
End Get
Set(ByVal value As String)
_paralizacion = value
End Set
End Property
Private _RoboExpoliacion As String
Public Property RoboExpoliacion() As String
Get
Return _RoboExpoliacion
End Get
Set(ByVal value As String)
_RoboExpoliacion = value
End Set
End Property
Private _lunas As String
Public Property Lunas() As String
Get
Return _lunas
End Get
Set(ByVal value As String)
_lunas = value
End Set
End Property
Private _formaPago As String
Public Property FormaPago() As String
Get
Return _formaPago
End Get
Set(ByVal value As String)
_formaPago = value
End Set
End Property
Private _IBAN As String
Public Property IBAN() As String
Get
Return _IBAN
End Get
Set(ByVal value As String)
_IBAN = value
End Set
End Property
Private _total As String
Public Property Total() As String
Get
Return _total
End Get
Set(ByVal value As String)
_total = value
End Set
End Property
Private _fechaEfecto As Date
Public Property FechaEfecto() As Date
Get
Return _fechaEfecto
End Get
Set(ByVal value As Date)
_fechaEfecto = value
End Set
End Property
Private _fechaVencimiento As Date
Public Property FechaVencimiento() As Date
Get
Return _fechaVencimiento
End Get
Set(ByVal value As Date)
_fechaVencimiento = value
End Set
End Property
End Class