/**
  * @name getDetailProduit($pId)
  * @param integer
  * @return ProduitAbonnementVO
  * @desc Retourne un ProduitAbonnementVO
  */
 public function getDetailProduit($pId)
 {
     $lProduit = DetailProduitAbonnementViewManager::select($pId);
     $lProduit[0]->setLots(ListeLotAbonnementViewManager::selectByIdProduitAbonnement($pId));
     return $lProduit;
 }