/**
  * @name getListeProduit($pParam)
  * @return ListeProduitResponse
  * @desc Retourne la liste des produits
  */
 public function getListeProduit($pParam)
 {
     $lVr = ListeAbonneValid::validGetListeProduit($pParam);
     if ($lVr->getValid()) {
         $lAbonnementService = new AbonnementService();
         $lResponse = new ListeProduitResponse();
         $lResponse->setListeProduit($lAbonnementService->getProduitsNonAbonne($pParam['id'], $pParam["idFerme"]));
         return $lResponse;
     }
     return $lVr;
 }