This commit is contained in:
2022-05-19 16:23:25 +02:00
parent 9d4c6ecc7d
commit 2f45a5a342
14 changed files with 48 additions and 21 deletions

View File

@@ -5,9 +5,9 @@ public class HesSoGarage {
//Create a new garage
GarageManager garageManager = new GarageManager();
String name = "<html><body><i>Garage manager</i><br>Prestations</body></html>";
String logoFilePath = "src/logo_garage.png"; //TODO redimensionnement automatique
String logoFilePath = "src/logo_garage.png";
//Create a new HMI for calculate and print the bill
new ManagerGui(name, logoFilePath, garageManager.getServices(), garageManager); //TODO affichage sans redimensionnement
new ManagerGui(name, logoFilePath, garageManager.getServices(), garageManager);
}
}