production/Controleur/ControleurAjaxnotificationcarte.php
2025-12-02 11:29:44 +00:00

38 lines
680 B
PHP
Executable File

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Carteassure.php';
class ControleurAjaxnotificationcarte extends Controleur
{
private $carte;
public function __construct() {
$this->carte = new Carteassure();
}
public function index()
{
}
public function societe()
{
$this->carte->notificationnocartegroupesociete();
}
public function police()
{
$this->carte->notificationnocartegroupepolice();
}
public function adherent()
{
$this->carte->notificationnocartegroupeadherent();
}
public function nocarte()
{
$this->carte->notificationnocarte();
}
}