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

add consommable.php

parent 2671dcbc
No related branches found
No related tags found
No related merge requests found
<?php
class Consommable
{
private $ref;
private $nom;
private $prix;
private $type;
public function ref()
{
return $this->ref;
}
public function setRef($ref)
{
$this->ref = $ref;
}
public function nom()
{
return $this->nom;
}
public function setNom($nom)
{
$this->nom = $nom;
}
public function prix()
{
return $this->prix;
}
public function setPrix($prix)
{
$this->prix = $prix;
}
public function type()
{
return $this->type;
}
public function setType($type)
{
$this->type = $type;
}
}
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