<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
class JobSchool
{
/**
* @var integer
*/
private $id;
/**
* @var \App\Entity\School
*/
private $school;
/**
* @var \App\Entity\Job
*/
private $job;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set school
*
* @param \App\Entity\School $school
*
* @return JobSchool
*/
public function setSchool(\App\Entity\School $school = null)
{
$this->school = $school;
return $this;
}
/**
* Get school
*
* @return \App\Entity\School
*/
public function getSchool()
{
return $this->school;
}
/**
* Set job
*
* @param \App\Entity\Job $job
*
* @return JobSchool
*/
public function setJob(\App\Entity\Job $job = null)
{
$this->job = $job;
return $this;
}
/**
* Get job
*
* @return \App\Entity\Job
*/
public function getJob()
{
return $this->job;
}
/**
* @var bool
*/
private $isActive = true;
/**
* Set isActive.
*
* @param bool $isActive
*
* @return JobSchool
*/
public function setIsActive($isActive)
{
$this->isActive = $isActive;
return $this;
}
/**
* Get isActive.
*
* @return bool
*/
public function getIsActive()
{
return $this->isActive;
}
}