/**
  * @name getProduitByIdNom($pId)
  * @param integer
  * @return ProduitAbonnementVO
  * @desc Retourne un ProduitAbonnementVO
  */
 public function getProduitByIdNom($pId)
 {
     $lProduit = ProduitAbonnementManager::selectByIdNom($pId);
     $lProduit->setLots(ListeLotAbonnementViewManager::selectByIdProduitAbonnement($lProduit->getId()));
     return $lProduit;
 }