<?php
namespace App\project\OfficeBrain\CustomBundle\CareerBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* CareerApplicationEducation
*
* @ORM\Table("tbl_career_application_education")
* @ORM\Entity(repositoryClass="App\project\OfficeBrain\CustomBundle\CareerBundle\Entity\CareerApplicationEducationRepository")
*/
class CareerApplicationEducation
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @ORM\ManyToOne(targetEntity="CareerApplicationUserData", inversedBy="careerApplicationEducation")
* @ORM\JoinColumn(name="career_application_user_data_id", referencedColumnName="id")
*/
private $careerApplicationUserDataId;
/**
* @var string
*
* @ORM\Column(name="school_name", type="string", length=255, nullable=true)
*/
private $schoolName;
/**
* @var string
*
* @ORM\Column(name="city", type="string", length=255, nullable=true)
*/
private $city;
/**
* @var string
*
* @ORM\Column(name="course", type="string", length=255, nullable=true)
*/
private $course;
/**
* @var integer
*
* @ORM\Column(name="years_completed", type="integer", nullable=true)
*/
private $yearsCompleted;
/**
* @var string
*
* @ORM\Column(name="is_graduated", type="string", length=255, nullable=true)
*/
private $isGraduated;
/**
* @var string
*
* @ORM\Column(name="school", type="string", length=255, nullable=true)
*/
private $school;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set schoolName
*
* @param string $schoolName
*
* @return CareerApplicationEducation
*/
public function setSchoolName($schoolName)
{
$this->schoolName = $schoolName;
return $this;
}
/**
* Get schoolName
*
* @return string
*/
public function getSchoolName()
{
return $this->schoolName;
}
/**
* Set city
*
* @param string $city
*
* @return CareerApplicationEducation
*/
public function setCity($city)
{
$this->city = $city;
return $this;
}
/**
* Get city
*
* @return string
*/
public function getCity()
{
return $this->city;
}
/**
* Set course
*
* @param string $course
*
* @return CareerApplicationEducation
*/
public function setCourse($course)
{
$this->course = $course;
return $this;
}
/**
* Get course
*
* @return string
*/
public function getCourse()
{
return $this->course;
}
/**
* Set yearsCompleted
*
* @param integer $yearsCompleted
*
* @return CareerApplicationEducation
*/
public function setYearsCompleted($yearsCompleted)
{
$this->yearsCompleted = $yearsCompleted;
return $this;
}
/**
* Get yearsCompleted
*
* @return integer
*/
public function getYearsCompleted()
{
return $this->yearsCompleted;
}
/**
* Set school
*
* @param string $isGraduated
*
* @return CareerApplicationEducation
*/
public function setIsGraduated($isGraduated)
{
$this->isGraduated = $isGraduated;
return $this;
}
/**
* Get isGraduated
*
* @return string
*/
public function getIsGraduated()
{
return $this->isGraduated;
}
/**
* Set school
*
* @param string $school
*
* @return CareerApplicationEducation
*/
public function setSchool($school)
{
$this->school = $school;
return $this;
}
/**
* Get school
*
* @return string
*/
public function getSchool()
{
return $this->school;
}
/**
* Set careerApplicationUserDataId
*
* @param \App\project\OfficeBrain\CustomBundle\CareerBundle\Entity\CareerApplicationUserData $careerApplicationUserDataId
*
* @return CareerApplicationEducation
*/
public function setCareerApplicationUserDataId(\App\project\OfficeBrain\CustomBundle\CareerBundle\Entity\CareerApplicationUserData $careerApplicationUserDataId = null)
{
$this->careerApplicationUserDataId = $careerApplicationUserDataId;
return $this;
}
/**
* Get careerApplicationUserDataId
*
* @return \App\project\OfficeBrain\CustomBundle\CareerBundle\Entity\CareerApplicationUserData
*/
public function getCareerApplicationUserDataId()
{
return $this->careerApplicationUserDataId;
}
}