public static Vendeur Instance() { if (_instance == null) { _instance = new Vendeur(); } return(_instance); }
void testSingleton() { // initialisation du vendeur du système ProjetSI73.Singleton.Vendeur leVendeur = ProjetSI73.Singleton.Vendeur.Instance(); leVendeur.nom = "Vendeur Auto"; leVendeur.adresse = "Paris"; leVendeur.email = "*****@*****.**"; // affichage du vendeur du système affiche(); }
void affiche() { ProjetSI73.Singleton.Vendeur leVendeur = ProjetSI73.Singleton.Vendeur.Instance(); leVendeur.affiche(); }