Beispiel #1
0
        public static void Main(string[] args)
        {
            GrandHotelApp app = GrandHotelApp.Instance;

            app.Title = "GrandHotel";

            // Ajout des pages
            Page accueil = new PageAccueil();

            app.AddPage(accueil);
            Page gestionDesClients = new Page_GestionDesClients();

            app.AddPage(gestionDesClients);
            Page gestionDesFactures = new Page_GestionDesFactures();

            app.AddPage(gestionDesFactures);
            Page resultatsHotel = new Page_ResultatsHotel();

            app.AddPage(resultatsHotel);



            // Affichage de la page d'accueil
            app.NavigateTo(accueil);
            app.Run();
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            GrandHotelApp app = GrandHotelApp.Instance;

            app.Title = "GrandHotel";

            // Ajout des pages
            Page accueil = new PageAccueil();

            app.AddPage(accueil);
            app.AddPage(new PageClient());
            app.AddPage(new PageFacture());
            app.AddPage(new PageResultatHotel());

            // Affichage de la page d'accueil
            app.NavigateTo(accueil);

            // Lancement de l'appligfgdf
            //
            app.Run();
        }