Beispiel #1
0
 public static void ocuparVaga(Carro carro, int hora, int minuto) {
   Box box = getVagaLivre();
   if (box != null) {
     box.setCarro(carro);
     box.setHorarioEntrada(hora, minuto);
   }
 }