/**
  * @name set($pIdentification)
  * @param IdentificationVO
  * @return integer
  * @desc Ajoute ou modifie une Identification
  */
 public function set($pIdentification)
 {
     $lIdentificationValid = new IdentificationValid();
     if ($lIdentificationValid->input($pIdentification)) {
         if ($lIdentificationValid->insert($pIdentification)) {
             return $this->insert($pIdentification);
         } else {
             if ($lIdentificationValid->update($pIdentification)) {
                 return $this->update($pIdentification);
             } else {
                 return false;
             }
         }
     } else {
         return false;
     }
 }