/**
  * @name getDetailAbonnement($pParam)
  * @desc Donne le détail d'un produit et de l'abonnement
  */
 public function getDetailAbonnement($pParam)
 {
     $lVr = ListeAbonneValid::validGetDetailAbonnement($pParam);
     if ($lVr->getValid()) {
         $lAbonnementService = new AbonnementService();
         $lResponse = new DetailAbonnementResponse();
         $lResponse->setProduit($lAbonnementService->getDetailProduit($pParam["idProduit"]));
         $lResponse->setAbonnement($lAbonnementService->getAbonnement($pParam["idCompteAbonnement"]));
         return $lResponse;
     }
     return $lVr;
 }