<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
class JobSchoolSubject {
/**
* @var int
*/
private $id;
/**
* @var string
*/
private $abbreviation;
/**
* @var string
*/
private $subjectName;
/**
* Get id.
*
* @return int
*/
public function getId() {
return $this->id;
}
/**
* Set abbreviation.
*
* @param string $abbreviation
*
* @return SchoolSubject
*/
public function setAbbreviation($abbreviation) {
$this->abbreviation = $abbreviation;
return $this;
}
/**
* Get abbreviation.
*
* @return string
*/
public function getAbbreviation() {
return $this->abbreviation;
}
/**
* Set subjectName.
*
* @param string $subjectName
*
* @return JobSchoolSubject
*/
public function setSubjectName($subjectName) {
$this->subjectName = $subjectName;
return $this;
}
/**
* Get subjectName.
*
* @return string
*/
public function getSubjectName() {
return $this->subjectName;
}
}