Skip to content
Snippets Groups Projects
Commit 287376ad authored by clement's avatar clement
Browse files

corrections

parent d240430f
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,8 @@
class Animal
{
private $nom;
private $proprio;
private $race;
private $poids;
private $genre;
private $sterile;
......@@ -21,6 +23,26 @@ class Animal
$this->nom = $nom;
}
public function proprio()
{
return $this->proprio;
}
public function setProprio($proprio)
{
$this->proprio = $proprio;
}
public function race()
{
return $this->race;
}
public function setRace($race)
{
$this->race = $race;
}
public function poids()
{
return $this->poids;
......
......@@ -3,6 +3,8 @@
class Facture
{
private $id;
private $employe;
private $animal;
private $date_edition;
private $date_paiement;
private $moyen_paiement;
......@@ -18,6 +20,26 @@ class Facture
$this->id = $id;
}
public function employe()
{
return $this->employe;
}
public function setEmploye($employe)
{
$this->employe = $employe;
}
public function animal()
{
return $this->animal;
}
public function setAnimal($animal)
{
$this->animal = $animal;
}
public function date_edition()
{
return $this->date_edition;
......
......@@ -2,9 +2,20 @@
class Personne
{
private $id;
private $nom;
private $prenom;
public function id()
{
return $this->id;
}
public function setId($id)
{
$this->id = $id;
}
public function nom()
{
return $this->nom;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment