// Constructeur avec génération d'un numéro automatique pour chaque tâche
 public TacheEnregistrement(VolDepart v) {
   super(
       "ER" + numTache,
       v.getHeure().retrait(new Duree(1, 30)),
       v.getHeure().retrait(new Duree(0, 15)));
   numTache++;
   volEnregistrement = v;
   lesTachesEnregistrement.put(this.getIdTache(), this);
   tachesCourantes.add(this);
   volEnregistrement.ajouterTacheVol(this);
 }
 // Retourne le type de la tâche
 public String getType() {
   return "Enregistrement vol " + volEnregistrement.getId();
 }