2025-10-07 16:36:41 +02:00
|
|
|
package pakeje;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
public class GestionTravaux {
|
|
|
|
public ArrayList<Batiment> listeBatiment;
|
|
|
|
public ArrayList<Technicien> listeTechnicien;
|
|
|
|
|
|
|
|
public GestionTravaux() {
|
2025-10-07 16:42:39 +02:00
|
|
|
listeBatiment = new ArrayList<>();
|
|
|
|
listeTechnicien = new ArrayList<>();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void ajouterBatiment( Batiment b) {
|
|
|
|
listeBatiment.add(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void ajouterTechnicien( Technicien t) {
|
|
|
|
listeTechnicien.add(t);
|
2025-10-07 16:36:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|