id = $id; $this->nomPrenom = $nomPrenom; $this->adresse = $adresse; $this->ville = $ville; $this->codePostal = $codePostal; $this->courriel = $courriel; $this->versements = array(); } /* * ajouter un versement pour une activité et un tarif donnés */ public function ajouterVersement( $idActivite, $idTarif, $montant ) { $this->versements[] = new Versement( $idActivite, $idTarif, $montant ); } }