17 lines
416 B
VB.net
17 lines
416 B
VB.net
Partial Public Class vf_liquidacionesciasextendidas
|
|
Public ReadOnly Property Compañia As String
|
|
Get
|
|
If Me.NumeroCias = 0 Then
|
|
Return ""
|
|
Else
|
|
If Me.NumeroCias = 1 Then
|
|
Return Me.Cia
|
|
Else
|
|
Return "Varias"
|
|
End If
|
|
End If
|
|
End Get
|
|
End Property
|
|
|
|
End Class
|