コード例 #1
0
        public static void VoirGestionClient()
        {
            AfficherEnTete.MethodeAfficherEnTete("GESTION CLIENT");

            Console.WriteLine("1. Base de donnée clients");
            Console.WriteLine("2. Gestion des dossiers de voyage");
            Console.WriteLine("R. Retour");
            Console.WriteLine();
            Console.Write("Votre choix: ");
        }
コード例 #2
0
        public static void VoirIntranet()
        {
            AfficherEnTete.MethodeAfficherEnTete("INTRANET");

            Console.WriteLine("1. Gestion des voyages");
            Console.WriteLine("2. Gestion des clients");
            Console.WriteLine("Q. Quitter");
            Console.WriteLine();
            Console.Write("Votre choix: ");
        }
コード例 #3
0
        public static void VoirBaseDeDonnéeClient()
        {
            AfficherEnTete.MethodeAfficherEnTete("GESTION DES CLIENTS");

            Console.WriteLine("1. Lister les clients");
            Console.WriteLine("2. Envoyer un email à un client");
            Console.WriteLine("3. Supprimer un client");
            Console.WriteLine("R. Retour");
            Console.WriteLine();
            Console.Write("Votre choix: ");
        }
コード例 #4
0
        public static void VoirGestionDossier()
        {
            AfficherEnTete.MethodeAfficherEnTete("GESTION DES DOSSIERS");

            Console.WriteLine("1. Dossiers En Attente");
            Console.WriteLine("2. Dossiers En Cours");
            Console.WriteLine("3. Dossiers Acceptés");
            Console.WriteLine("4. Dossiers Refusés");
            Console.WriteLine("R. Retour");
            Console.WriteLine();
            Console.Write("Votre choix: ");
        }
コード例 #5
0
        public static void VoirGestionVoyage()
        {
            AfficherEnTete.MethodeAfficherEnTete("GESTION VOYAGE");

            Console.WriteLine("1. Liste des voyages");
            Console.WriteLine("2. Ajouter un voyage");
            Console.WriteLine("3. Liste des destinations");
            Console.WriteLine("4. Ajouter une destination");
            Console.WriteLine("R. Retour");
            Console.WriteLine();
            Console.Write("Votre choix: ");
        }
コード例 #6
0
ファイル: Program.cs プロジェクト: Lapinte/ProjetBoVoyage
 public static void ListerClients(List <Client> listeClients, string nomRépertoire, bool index)
 {
     AfficherEnTete.MethodeAfficherEnTete(nomRépertoire);
     AfficherListeClients.VoirListeClient(listeClients, index);
 }
コード例 #7
0
ファイル: Program.cs プロジェクト: Lapinte/ProjetBoVoyage
 public static void ListerVoyage(List <Voyage> listeVoyage, string nomRépertoire, bool index)
 {
     AfficherEnTete.MethodeAfficherEnTete(nomRépertoire);
     AfficherListeVoyages.AfficherVoyage(listeVoyage, index);
 }
コード例 #8
0
ファイル: Program.cs プロジェクト: Lapinte/ProjetBoVoyage
 public static void ListerDestination(List <Destination> listeDestination, string nomRépertoire, bool index)
 {
     AfficherEnTete.MethodeAfficherEnTete(nomRépertoire);
     AfficherListeDestinations.AfficherDestination(listeDestination, index);
 }
コード例 #9
0
ファイル: Program.cs プロジェクト: Lapinte/ProjetBoVoyage
 public static void ListerDossiers(List <DossierVoyage> listeDossier, string nomRépertoire, bool index)
 {
     AfficherEnTete.MethodeAfficherEnTete(nomRépertoire);
     AfficherListeDossiers.AfficherDossier(listeDossier, index);
 }