Esempio n. 1
0
 public void garerVoiture(Voiture v)
 {
     if (cpt < 5)
     {
         tabVoiture[cpt] = v;
         cpt++;
     }
     else
     {
         throw new ParkingException("Pas de place dans le parking");
     }
 }
Esempio n. 2
0
 public Parking()
 {
     tabVoiture = new Voiture[5];
 }