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

c

parent cee560bd
No related branches found
No related tags found
No related merge requests found
......@@ -2,10 +2,20 @@
class Espece extends Objet
{
public $_primaryAttr = "nom";
protected $id
protected $nom;
protected $prix_consultation;
public function id()
{
return $this->id;
}
public function setId($id)
{
$this->id = $id;
}
public function nom()
{
return $this->nom;
......
......@@ -2,11 +2,21 @@
class Race extends Objet
{
public $_primaryAttr = "nom";
protected $id
protected $nom;
protected $espece;
protected $prix_intervention;
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