/**
  * @name selectByCompte($pIdCompte)
  * @param integer
  * @return array(OperationVO)
  * @desc Retourne une liste d'Operation
  */
 public function selectByCompte($pIdCompte)
 {
     $lOperation = OperationManager::recherche(array(OperationManager::CHAMP_OPERATION_ID_COMPTE), array('='), array($pIdCompte), array(''), array(''));
     return $lOperation;
 }
 /**
  * @name selectOpeReservation($pIdCompte, $pIdCommande)
  * @param integer
  * @param integer
  * @return array(OperationVO)
  * @desc Récupères toutes les lignes de la table ayant pour IdCompte $pId, IdCommande $pIdCommande et de type 0. Puis les renvoie sous forme d'une collection de OperationVO
  */
 public static function selectOpeReservation($pIdCompte, $pIdCommande)
 {
     return OperationManager::recherche(array(OperationManager::CHAMP_OPERATION_ID_COMPTE, OperationManager::CHAMP_OPERATION_ID_COMMANDE, OperationManager::CHAMP_OPERATION_TYPE), array('=', '=', '='), array($pIdCompte, $pIdCommande, 0), array(OperationManager::CHAMP_OPERATION_ID), array('ASC'));
 }