idResult = $idResult; return $this; } /** * Get idResult. * * @return int */ public function getIdResult() { return $this->idResult; } /** * Set userId. * * @param int $userId * * @return GradebookResultLog */ public function setUserId($userId) { $this->userId = $userId; return $this; } /** * Get userId. * * @return int */ public function getUserId() { return $this->userId; } /** * Set evaluationId. * * @param int $evaluationId * * @return GradebookResultLog */ public function setEvaluationId($evaluationId) { $this->evaluationId = $evaluationId; return $this; } /** * Get evaluationId. * * @return int */ public function getEvaluationId() { return $this->evaluationId; } /** * Set createdAt. * * @param \DateTime $createdAt * * @return GradebookResultLog */ public function setCreatedAt($createdAt) { $this->createdAt = $createdAt; return $this; } /** * Get createdAt. * * @return \DateTime */ public function getCreatedAt() { return $this->createdAt; } /** * Set score. * * @param float $score * * @return GradebookResultLog */ public function setScore($score) { $this->score = $score; return $this; } /** * Get score. * * @return float */ public function getScore() { return $this->score; } /** * Get id. * * @return int */ public function getId() { return $this->id; } }