32 lines
744 B
PHP
32 lines
744 B
PHP
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Prestationactes.php';
|
|
|
|
class ControleurAjaxlistefacturepartielle extends Controleur {
|
|
private $prestation;
|
|
|
|
public function __construct() {
|
|
$this->prestation = new Prestationactes();
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
|
|
}
|
|
|
|
public function supprimefactureselection()
|
|
{
|
|
$idEnteteFacture = $this->requete->getParametre("idEnteteFacture");
|
|
|
|
$this->prestation->supprimefactureselection($idEnteteFacture);
|
|
}
|
|
|
|
public function supprimefacturepartielle()
|
|
{
|
|
$idPrestationactes = $this->requete->getParametre("idPrestationactes");
|
|
|
|
$this->prestation->supprimefacturepartielle($idPrestationactes);
|
|
}
|
|
|
|
} |