/**
  * @name updatePass($pParam)
  * @return VR
  * @desc Met à jour le mot de passe d'un compte spécial
  */
 public function updatePass($pParam)
 {
     $lVr = CompteSpecialValid::validUpdatePass($pParam);
     if ($lVr->getValid()) {
         $lIdentificationService = new IdentificationService();
         $lIdentificationVO = $lIdentificationService->get($pParam['id']);
         $lIdentificationVO->setPass(md5($pParam["motPasse"]));
         $lIdentificationService->set($lIdentificationVO);
     }
     return $lVr;
 }