X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/884e74545988e2db76cce96ecad09c99bccc2bc0..c1d5250cc8decea1ad3243757667206a88a88235:/Entity/Application.php diff --git a/Entity/Application.php b/Entity/Application.php index c922932..2e8cca5 100644 --- a/Entity/Application.php +++ b/Entity/Application.php @@ -11,6 +11,16 @@ class Application { */ private $id; + /** + * @var float + */ + private $score; + + /** + * @var \DateTime + */ + private $canceled; + /** * @var \DateTime */ @@ -52,6 +62,50 @@ class Application { return $this->id; } + /** + * Set score + * + * @param float $score + * + * @return Application + */ + public function setScore($score) { + $this->score = $score; + + return $this; + } + + /** + * Get score + * + * @return float + */ + public function getScore() { + return $this->score; + } + + /** + * Set canceled + * + * @param \DateTime $canceled + * + * @return Application + */ + public function setCanceled($canceled) { + $this->canceled = $canceled; + + return $this; + } + + /** + * Get canceled + * + * @return \DateTime + */ + public function getCanceled() { + return $this->canceled; + } + /** * Set created *