13 lines
393 B
VB.net
13 lines
393 B
VB.net
Public Class codigospostales
|
|
Public ReadOnly Property NombreMunicipio As String
|
|
Get
|
|
If DescripcionAdicional IsNot Nothing AndAlso DescripcionAdicional <> "" Then
|
|
Return DescripcionAdicional & " (" & Me.municipios.Nombre & ")"
|
|
Else
|
|
Return Me.municipios.Nombre
|
|
End If
|
|
End Get
|
|
End Property
|
|
|
|
End Class
|