parent
7c7d1431c1
commit
76635d851c
@ -1,5 +1,20 @@
|
|||||||
<?php
|
<?php
|
||||||
|
require_once("Conncetion.php");
|
||||||
|
include_once("../business/Task.php");
|
||||||
|
|
||||||
|
class UserGateway
|
||||||
|
{
|
||||||
|
public Connection $con;
|
||||||
|
|
||||||
|
public function __construct(Connection $con){
|
||||||
|
$this->con=$con;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function insert(User $u){
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// find(critere (tableau), valeur associée aux critères)
|
|
||||||
|
|
||||||
?>
|
?>
|
Loading…
Reference in new issue