public void Init()
        {
            client       = new Gestion_Entreprise.Client("Ludovic");
            startPeriode = "21/10/17";
            endPeriode   = "05/11/17";
            consult      = new Gestion_Entreprise.Consultation(client, startPeriode, endPeriode);
            Julien       = new Gestion_Entreprise.Manager("Julien", "Beard", 3000, "Name_company");

            Julien.AddSalary(2017, 3400);
            Ludovic = new Gestion_Entreprise.Consultant("Ludovic", "Merel", 2500, "Name_company", Julien, consult);
            Julien.AddConsultant(Ludovic);
        }
        public void Init()
        {
            julien       = new Gestion_Entreprise.Client("Julien");
            bob          = new Gestion_Entreprise.Manager("bob", "Beard", 60000, "Name_company");
            firstConsult = new Gestion_Entreprise.Consultation(julien, startPeriode, endPeriode);
            ludovic      = new Gestion_Entreprise.Consultant("Ludovic", "Merel", 35000,
                                                             "Name_compan", bob, firstConsult);

            listConsult.Add(ludovic);

            drh = new Gestion_Entreprise.DRH("Franck", "test", 70000, "Name_company", listConsult);
        }
        public void Init()
        {
            startPeriode = "20/10/17";
            endPeriode   = "20/11/17";

            julien       = new Gestion_Entreprise.Client("Julien");
            bob          = new Gestion_Entreprise.Manager("Julien", "Beard", 60000, "Name_company");
            firstConsult = new Gestion_Entreprise.Consultation(julien, startPeriode, endPeriode);

            ludovic = new Gestion_Entreprise.Consultant("Ludovic", "Merel", 35000,
                                                        "Name_compan", bob, firstConsult);
            bob.AddConsultant(ludovic);
        }
 public void Init()
 {
     client       = new Gestion_Entreprise.Client("Ludovic");
     startPeriode = "21/10/17";
     endPeriode   = "05/11/17";
     consult      = new Gestion_Entreprise.Consultation(client, startPeriode, endPeriode);
     Julien       = new Gestion_Entreprise.Manager("Julien", "Beard", 3000, "Name_company");
     Ludovic      = new Gestion_Entreprise.Consultant("Ludovic", "Merel", 2500, "Name_company", Julien, consult);
     Julien.AddConsultant(Ludovic);
     employeeList.Add(Julien);
     Julien.AddSalary(2017, 3500);
     employeeList.Add(Ludovic);
     Ludovic.AddSalary(2017, 2500);
     Pascal = new Gestion_Entreprise.DF("Pascal", "Willems", 120000, "Name_company", employeeList);
 }