<?phpnamespace DcSiteBundle\Entity;/** * ServiceWorkCategoryContent */class ServiceWorkCategoryContent{    /**     * @var integer     */    private $id;    /**     * @var string     */    private $title;    /**     * @var string     */    private $title_h1;    /**     * @var string     */    private $description;    /**     * @var string     */    private $language;    /**     * @var string     */    private $seo_title;    /**     * @var string     */    private $seo_description;    /**     * @var string     */    private $seo_keywords;    /**     * @var ServiceWorkCategory     */    private $work_category;    /**     * Get id     *     * @return integer     */    public function getId()    {        return $this->id;    }    /**     * Set title     *     * @param string $title     *     * @return ServiceWorkCategoryContent     */    public function setTitle($title)    {        $this->title = $title;        return $this;    }    /**     * Get title     *     * @return string     */    public function getTitle()    {        return $this->title;    }    /**     * Set titleH1     *     * @param string $titleH1     *     * @return ServiceWorkCategoryContent     */    public function setTitleH1($titleH1)    {        $this->title_h1 = $titleH1;        return $this;    }    /**     * Get titleH1     *     * @return string     */    public function getTitleH1()    {        return $this->title_h1;    }    /**     * Set description     *     * @param string $description     *     * @return ServiceWorkCategoryContent     */    public function setDescription($description)    {        $this->description = $description;        return $this;    }    /**     * Get description     *     * @return string     */    public function getDescription()    {        return $this->description;    }    /**     * Set language     *     * @param string $language     *     * @return ServiceWorkCategoryContent     */    public function setLanguage($language)    {        $this->language = $language;        return $this;    }    /**     * Get language     *     * @return string     */    public function getLanguage()    {        return $this->language;    }    /**     * Set seoTitle     *     * @param string $seoTitle     *     * @return ServiceWorkCategoryContent     */    public function setSeoTitle($seoTitle)    {        $this->seo_title = $seoTitle;        return $this;    }    /**     * Get seoTitle     *     * @return string     */    public function getSeoTitle()    {        return $this->seo_title;    }    /**     * Set seoDescription     *     * @param string $seoDescription     *     * @return ServiceWorkCategoryContent     */    public function setSeoDescription($seoDescription)    {        $this->seo_description = $seoDescription;        return $this;    }    /**     * Get seoDescription     *     * @return string     */    public function getSeoDescription()    {        return $this->seo_description;    }    /**     * Set seoKeywords     *     * @param string $seoKeywords     *     * @return ServiceWorkCategoryContent     */    public function setSeoKeywords($seoKeywords)    {        $this->seo_keywords = $seoKeywords;        return $this;    }    /**     * Get seoKeywords     *     * @return string     */    public function getSeoKeywords()    {        return $this->seo_keywords;    }    /**     * Set workCategory     *     * @param ServiceWorkCategory $workCategory     *     * @return ServiceWorkCategoryContent     */    public function setWorkCategory(ServiceWorkCategory $workCategory = null)    {        $this->work_category = $workCategory;        return $this;    }    /**     * Get workCategory     *     * @return ServiceWorkCategory     */    public function getWorkCategory()    {        return $this->work_category;    }}