a50d36e7b4
- correction de bug
32 lines
644 B
PHP
32 lines
644 B
PHP
<?php
|
|
Class GiantController extends GiantModel
|
|
{
|
|
public function _getCommandeFromUser($user = null) {
|
|
return (parent::getCommmande($user));
|
|
}
|
|
|
|
public function _getCommandeFromUserExcel($user) {
|
|
|
|
}
|
|
|
|
public function _getCommandeFromUserXML($user) {
|
|
|
|
}
|
|
|
|
public function _deleteCommandeUser($param) {
|
|
parent::_deleteCommande($param);
|
|
}
|
|
|
|
public function _deleteCommandeId($param) {
|
|
parent::_deleteCommande($param);
|
|
}
|
|
|
|
public function _updateCommandeUser($param) {
|
|
parent::_updateCommande($param);
|
|
}
|
|
|
|
public function _updateCommandeId($param) {
|
|
parent::_updateCommande($param);
|
|
}
|
|
}
|
|
?>
|