first commit

This commit is contained in:
2025-10-07 16:46:34 +02:00
commit 9484b7ad82
11 changed files with 596 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package travaux;
import java.util.*;
public class GestionTravaux {
/**
* Association Type = Batiment
*/
private ArrayList<Batiment> listeBatiments;
/**
* Association Type = Ouverture
*/
private ArrayList<Ouverture> listeOuvertures;
/**
* Association Type = Technicien
*/
private ArrayList<Technicien> listeTechiniciens;
}