From b4a4dff823e3c205207a96db56484fb5b61ca0d2 Mon Sep 17 00:00:00 2001 From: Tim Wagner <tim.wagner@sgalinski.de> Date: Tue, 17 Sep 2019 18:24:17 +0200 Subject: [PATCH] [TASK] Add employment types to Job domain model --- Classes/Domain/Model/Job.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Classes/Domain/Model/Job.php b/Classes/Domain/Model/Job.php index fd1d92ef..8c4f8067 100644 --- a/Classes/Domain/Model/Job.php +++ b/Classes/Domain/Model/Job.php @@ -102,6 +102,11 @@ class Job extends AbstractEntity { */ protected $contact; + /** + * @var string $employmentTypes + */ + protected $employmentTypes = ''; + /** * @return string */ @@ -298,4 +303,17 @@ class Job extends AbstractEntity { $this->sorting = $sorting; } + /** + * @return string + */ + public function getEmploymentTypes(): string { + return $this->employmentTypes; + } + + /** + * @param string $employmentTypes + */ + public function setEmploymentTypes(string $employmentTypes): void { + $this->employmentTypes = $employmentTypes; + } } -- GitLab