document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. \' Gambas class file
  2.  
  3. Inherits EstadoVentanilla
  4.  
  5. Public Sub atiende(pers As Persona)
  6.   \'\' el cajero esta ocupado pero si hay una persona mayor
  7.   \'\' le atiende
  8.  
  9.   If pers.getEdad() > 65 Then
  10.  
  11.     Super.texto.Text &= "Ventanilla Suspendida: Pero atiende a <b>" & pers.getNombre() & "</b> porque es una persona mayor<br>"
  12.   Else
  13.  
  14.     Super.texto.Text &= "Ventanilla Suspendida: Espere 5 minutos por favor...<br>"
  15.   Endif
  16.  
  17. End
');