id = $id; return $this; } /** * Gets id. * * @return int */ public function getId() { return $this->id; } /** * Sets doctor. * * @param string $doctor * * @return $this */ public function setDoctor($doctor) { $this->doctor = $doctor; return $this; } /** * Gets doctor. * * @return string */ public function getDoctor() { return $this->doctor; } /** * Sets doctorePhone. * * @param string $doctorePhone * * @return $this */ public function setDoctorePhone($doctorePhone) { $this->doctorePhone = $doctorePhone; return $this; } /** * Gets doctorePhone. * * @return string */ public function getDoctorePhone() { return $this->doctorePhone; } /** * Sets comments. * * @param string $comments * * @return $this */ public function setComments($comments) { $this->comments = $comments; return $this; } /** * Gets comments. * * @return string */ public function getComments() { return $this->comments; } /** * Sets certificate. * * @param bool $certificate * * @return $this */ public function setCertificate($certificate) { $this->certificate = $certificate; return $this; } /** * Gets certificate. * * @return bool */ public function getCertificate() { return $this->certificate; } /** * Sets insuranceCertificate. * * @param bool $insuranceCertificate * * @return $this */ public function setInsuranceCertificate($insuranceCertificate) { $this->insuranceCertificate = $insuranceCertificate; return $this; } /** * Gets insuranceCertificate. * * @return bool */ public function getInsuranceCertificate() { return $this->insuranceCertificate; } /** * Set insuranceName * * @param string $insuranceName * * @return Medical */ public function setInsuranceName($insuranceName) { $this->insuranceName = $insuranceName; return $this; } /** * Get insuranceName * * @return string */ public function getInsuranceName() { return $this->insuranceName; } /** * Set insuranceNumber * * @param string $insuranceNumber * * @return Medical */ public function setInsuranceNumber($insuranceNumber) { $this->insuranceNumber = $insuranceNumber; return $this; } /** * Get insuranceNumber * * @return string */ public function getInsuranceNumber() { return $this->insuranceNumber; } /** * Get person * @return Person */ public function getPerson() { return $this->person; } /** * Set healthPass * * @param boolean $healthPass * * @return Medical */ public function setHealthPass($healthPass) { $this->healthPass = $healthPass; return $this; } /** * Get healthPass * * @return boolean */ public function getHealthPass() { return $this->healthPass; } }