Example #1
0
 public function access_ModelProduct_FindProductByIdProd($id)
 {
     include_once "models/product.php";
     $product = new Product();
     $resultat = $product->findProductByIdProd($id);
     return $resultat;
 }