<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
class SchoolType {
/**
* @var integer
*/
private $id;
/**
* @var string
*/
private $name;
/**
* @var string
*/
private $shortName;
/**
* @var \App\Entity\SchoolTypeCategory
*/
private $schoolTypeCategory;
/**
* Get id
*
* @return integer
*/
public function getId() {
return $this->id;
}
/**
* Set name
*
* @param string $name
*
* @return SchoolType
*/
public function setName($name) {
$this->name = $name;
return $this;
}
/**
* Get name
*
* @return string
*/
public function getName() {
return $this->name;
}
/**
* Set shortName.
*
* @param string $shortName
*
* @return SchoolType
*/
public function setShortName($shortName) {
$this->shortName = $shortName;
return $this;
}
/**
* Get shortname.
*
* @return string
*/
public function getShortName() {
return $this->shortName;
}
/**
* Set schoolTypeCategory.
*
* @param \App\Entity\SchoolTypeCategory|null $schoolTypeCategory
*
* @return SchoolType
*/
public function setSchoolTypeCategory(\App\Entity\SchoolTypeCategory $schoolTypeCategory = null) {
$this->schoolTypeCategory = $schoolTypeCategory;
return $this;
}
/**
* Get schoolTypeCategory.
*
* @return \App\Entity\SchoolTypeCategory|null
*/
public function getSchoolTypeCategory() {
return $this->schoolTypeCategory;
}
}