/**
  * @name getProduitCommandeNonFacture($pIdMarche, $pIdCompteFerme)
  * @param integer Id Marche
  * @param integer Id Compte Ferme
  * @return array(ProduitDetailFactureAfficheVO)
  * @desc Retourne la liste des produits commandés mais non facturés
  */
 public function getProduitCommandeNonFacture($pIdMarche, $pIdCompteFerme)
 {
     return OperationManager::produitCommandeNonFacture($pIdMarche, $pIdCompteFerme);
 }