/** * @name selectByIdProduitAbonnement($pId) * @param integer * @return array(ListeLotAbonnementViewVO) * @desc Récupères toutes les lignes de la table ayant pour IdProduitAbonnement $pId et les renvoie sous forme d'une collection de ListeLotAbonnementViewVO */ public static function selectByIdProduitAbonnement($pId) { return LotAbonnementManager::recherche(array(LotAbonnementManager::CHAMP_LOTABONNEMENT_ID_PRODUIT_ABONNEMENT), array('='), array($pId), array(''), array('')); }