Files
Asegasa.NET/guia/presupuestos/CasetasRiegoAxa.vb
2026-04-28 11:52:16 +02:00

225 lines
6.1 KiB
VB.net

<Serializable>
Public Class CasetasRiegoAxa
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 _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 _casetaUbicacion As String
Public Property CasetaUbicacion() As String
Get
Return _casetaUbicacion
End Get
Set(ByVal value As String)
_casetaUbicacion = value
End Set
End Property
Private _casetaLocalidad As String
Public Property CasetaLocalidad() As String
Get
Return _casetaLocalidad
End Get
Set(ByVal value As String)
_casetaLocalidad = value
End Set
End Property
Private _casetaCodigoPostal As String
Public Property CasetaCodigoPostal() As String
Get
Return _casetaCodigoPostal
End Get
Set(ByVal value As String)
_casetaCodigoPostal = value
End Set
End Property
Private _casetaProvincia As String
Public Property CasetaProvincia() As String
Get
Return _casetaProvincia
End Get
Set(ByVal value As String)
_casetaProvincia = value
End Set
End Property
Private _EdificiosDescripcion As String
Public Property EdificiosDescripcion() As String
Get
Return _EdificiosDescripcion
End Get
Set(ByVal value As String)
_EdificiosDescripcion = value
End Set
End Property
Private _EdificiosCapital As String
Public Property EdificiosCapital() As String
Get
Return _EdificiosCapital
End Get
Set(ByVal value As String)
_EdificiosCapital = value
End Set
End Property
Private _mobiliarioDescripcion As String
Public Property MobiliarioDescripcion() As String
Get
Return _mobiliarioDescripcion
End Get
Set(ByVal value As String)
_mobiliarioDescripcion = value
End Set
End Property
Private _mobiliarioCapital As String
Public Property MobiliarioCapital() As String
Get
Return _mobiliarioCapital
End Get
Set(ByVal value As String)
_mobiliarioCapital = value
End Set
End Property
Private _existenciasDescripcion As String
Public Property ExistenciasDescripcion() As String
Get
Return _existenciasDescripcion
End Get
Set(ByVal value As String)
_existenciasDescripcion = value
End Set
End Property
Private _existenciasCapital As String
Public Property ExistenciasCapital() As String
Get
Return _existenciasCapital
End Get
Set(ByVal value As String)
_existenciasCapital = value
End Set
End Property
Private _capitalElegido As String
Public Property CapitalElegido() As String
Get
Return _capitalElegido
End Get
Set(ByVal value As String)
_capitalElegido = 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 _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