38 lines
680 B
PHP
Executable File
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();
|
|
}
|
|
|
|
} |