static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");

            mydbal    = new Dbal("dbclubfromage");
            myPays    = new Pays();
            myDaoPays = new DaoPays(mydbal);

            //myDaoPays.Insert(myPays);
            myDaoPays.InsertFromCSV("D:\\hugoCOMBET\\ClubFromageTemplate-master\\ModelLayer\\import files\\pays.csv");
            //myFromage = new Fromage(2,"Reblochon",default,myPays,default);
            myDaoFromage = new DaoFromage(mydbal, myDaoPays);
            //myDaoFromage.Insert(myFromage);
            myDaoFromage.InsertFromCSV("D:\\hugoCOMBET\\ClubFromageTemplate-master\\ModelLayer\\import files\\tableauNomDep.csv");
            //List<Fromage> myFromages = myDaoFromage.SelectAll();
            //foreach (Fromage f in myFromages)
            //{
            //    Console.WriteLine(f.Name);
            //}
            List <Pays> listPays = myDaoPays.SelectAll();

            foreach (Pays p in listPays)
            {
                Console.WriteLine(p.Name);
            }
            //string fromton = "Abondance";
            //Fromage myFromage = myDaoFromage.SelectByName(fromton);
            ////myFromage.Name = "Reblochon";
            ////myDaoFromage.Update(myFromage);
            //Console.WriteLine("L'ID du " + fromton + ": " + myFromage.Id);
        }