Newer
Older
private $date_edition;
private $date_paiement;
private $moyen_paiement;
private $prix_total;
public function id()
{
return $this->id;
}
public function setId($id)
{
$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;
}
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
public function date_edition()
{
return $this->date_edition;
}
public function setDate_edition($date_edition)
{
$this->date_edition = $date_edition;
}
public function date_paiement()
{
return $this->date_paiement;
}
public function setDate_paiement($date_paiement)
{
$this->date_paiement = $date_paiement;
}
public function moyen_paiement()
{
return $this->moyen_paiement;
}
public function setMoyen_paiement($moyen_paiement)
{
$this->moyen_paiement = $moyen_paiement;
}
public function prix_total()
{
return $this->prix_total;
}
public function setPrix_total($prix_total)
{
$this->prix_total = $prix_total;
}