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 * * @param \DateTime $created * * @return Application */ public function setCreated($created) { $this->created = $created; return $this; } /** * Get created * * @return \DateTime */ public function getCreated() { return $this->created; } /** * Set updated * * @param \DateTime $updated * * @return Application */ public function setUpdated($updated) { $this->updated = $updated; return $this; } /** * Get updated * * @return \DateTime */ public function getUpdated() { return $this->updated; } /** * Set session * * @param \Rapsys\AirBundle\Entity\Session $session * * @return Application */ public function setSession(\Rapsys\AirBundle\Entity\Session $session = null) { $this->session = $session; return $this; } /** * Get session * * @return \Rapsys\AirBundle\Entity\Session */ public function getSession() { return $this->session; } /** * Set user * * @param \Rapsys\AirBundle\Entity\User $user * * @return Application */ public function setUser(\Rapsys\AirBundle\Entity\User $user = null) { $this->user = $user; return $this; } /** * Get user * * @return \Rapsys\AirBundle\Entity\User */ public function getUser() { return $this->user; } }