diff --git a/class/animal.php b/class/animal.php index bd7c1ff85ad3c63efe44554452b7f76c3f7766f6..72c20b1da0b998f637b64f97926724da42e23941 100644 --- a/class/animal.php +++ b/class/animal.php @@ -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; diff --git a/class/facture.php b/class/facture.php index 94251795f38a5a8c4d431fb31f5941428789d001..0ee09399d69a31b613a3c9cb62266bf76c74eb6a 100644 --- a/class/facture.php +++ b/class/facture.php @@ -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; diff --git a/class/personne.php b/class/personne.php index 2d3b87761eccb2937603167512cad688a2256ce7..77db850a57ecd47ecb3ab77f69f9cf360bfef6ed 100644 --- a/class/personne.php +++ b/class/personne.php @@ -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;