// Mise a jour du LIVRE
        public void MAJ(Livre l)
        {
            // On MAJ tout SAUF l'indentifiant (ISBN)
            this.CodeTheme  = l.CodeTheme;
            this.TitreLivre = l.TitreLivre;

            DAO_Livre.MAJ_Livre(l);
        }
 public void init()
 {
     DAO_Livre.Init_Livres(this);
 }