/**
  * @name delete($pId)
  * @param integer
  * @desc Supprime une Identification
  */
 public function delete($pId)
 {
     $lIdentificationValid = new IdentificationValid();
     if ($lIdentificationValid->delete($pId)) {
         $lIdentificationVO = $this->get($pId);
         $lIdentificationVO->setAutorise(0);
         $this->update($lIdentificationVO);
     } else {
         return false;
     }
 }