Esempio n. 1
0
 public function Supprimer()
 {
     $id = $this->Id();
     if ($id != NULL) {
         $bCategorie = new BCategorie();
         $bCategorie->Supprimer($id);
     } else {
         GSession::LeverException(EXM_0012, 'MCategorie::Supprimer, pas d\'id categorie.');
     }
 }