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