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.
71 lines
1.4 KiB
71 lines
1.4 KiB
<?php
|
|
|
|
namespace Database;
|
|
|
|
class EntrainementEntity
|
|
{
|
|
private $idEntrainement;
|
|
private $date;
|
|
private $description;
|
|
private $latitude;
|
|
private $longitude;
|
|
private $feedback;
|
|
private $coachId;
|
|
|
|
public function getIdEntrainement()
|
|
{
|
|
return $this->idEntrainement;
|
|
}
|
|
public function getDate()
|
|
{
|
|
return $this->date;
|
|
}
|
|
public function getDescription()
|
|
{
|
|
return $this->description;
|
|
}
|
|
public function getLatitude()
|
|
{
|
|
return $this->latitude;
|
|
}
|
|
public function getLongitude()
|
|
{
|
|
return $this->longitude;
|
|
}
|
|
public function getFeedback()
|
|
{
|
|
return $this->feedback;
|
|
}
|
|
public function getCoachId()
|
|
{
|
|
return $this->coachId;
|
|
}
|
|
public function setIdEntrainement($idEntrainement)
|
|
{
|
|
$this->idEntrainement = $idEntrainement;
|
|
}
|
|
public function setDate($date)
|
|
{
|
|
$this->date = $date;
|
|
}
|
|
public function setDescription($description)
|
|
{
|
|
$this->description = $description;
|
|
}
|
|
public function setLatitude($latitude)
|
|
{
|
|
$this->latitude = $latitude;
|
|
}
|
|
public function setLongitude($longitude)
|
|
{
|
|
$this->longitude = $longitude;
|
|
}
|
|
public function setFeedback($feedback)
|
|
{
|
|
$this->feedback = $feedback;
|
|
}
|
|
public function setCoachId($coachId)
|
|
{
|
|
$this->coachId = $coachId;
|
|
}
|
|
} |