You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
1.7 KiB
92 lines
1.7 KiB
<?php
|
|
|
|
namespace Database;
|
|
|
|
class AthleteEntity {
|
|
private $idAthlete;
|
|
private $nom;
|
|
private $prenom;
|
|
private $email;
|
|
private $sexe;
|
|
private $taille;
|
|
private $poids;
|
|
private $motDePasse;
|
|
private $dateNaissance;
|
|
|
|
// Getters
|
|
public function getIdAthlete() {
|
|
return $this->idAthlete;
|
|
}
|
|
|
|
public function getNom() {
|
|
return $this->nom;
|
|
}
|
|
|
|
public function getPrenom() {
|
|
return $this->prenom;
|
|
}
|
|
|
|
public function getEmail() {
|
|
return $this->email;
|
|
}
|
|
|
|
public function getSexe() {
|
|
return $this->sexe;
|
|
}
|
|
|
|
public function getTaille() {
|
|
return $this->taille;
|
|
}
|
|
|
|
public function getPoids() {
|
|
return $this->poids;
|
|
}
|
|
|
|
public function getMotDePasse() {
|
|
return $this->motDePasse;
|
|
}
|
|
|
|
public function getDateNaissance() {
|
|
return $this->dateNaissance;
|
|
}
|
|
|
|
// Setters
|
|
public function setIdAthlete($idAthlete) {
|
|
$this->idAthlete = $idAthlete;
|
|
}
|
|
|
|
public function setNom($nom) {
|
|
$this->nom = $nom;
|
|
}
|
|
|
|
public function setPrenom($prenom) {
|
|
$this->prenom = $prenom;
|
|
}
|
|
|
|
public function setEmail($email) {
|
|
$this->email = $email;
|
|
}
|
|
|
|
public function setSexe($sexe) {
|
|
$this->sexe = $sexe;
|
|
}
|
|
|
|
public function setTaille($taille) {
|
|
$this->taille = $taille;
|
|
}
|
|
|
|
public function setPoids($poids) {
|
|
$this->poids = $poids;
|
|
}
|
|
|
|
public function setMotDePasse($motDePasse) {
|
|
$this->motDePasse = $motDePasse;
|
|
}
|
|
|
|
public function setDateNaissance($dateNaissance) {
|
|
$this->dateNaissance = $dateNaissance;
|
|
}
|
|
}
|
|
|
|
?>
|