-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
concretize job status for Beamter and Bundeswehr
- Loading branch information
Showing
12 changed files
with
433 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
src/Werte/Person/Taetigkeitsstatus/Status/BeamterAufWiderruf.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
|
||
namespace Demv\Werte\Person\Taetigkeitsstatus\Status; | ||
|
||
use Demv\Werte\Person\Taetigkeitsstatus\TaetigkeitsstatusInterface; | ||
use Demv\Werte\Value; | ||
|
||
/** | ||
* Class BeamterAufWiderruf | ||
* @package Demv\Werte\Person\Taetigkeitsstatus\Status | ||
*/ | ||
final class BeamterAufWiderruf extends Value implements TaetigkeitsstatusInterface | ||
{ | ||
const ID = 29; | ||
|
||
public function __construct() | ||
{ | ||
parent::__construct(self::ID, 'Beamter auf Widerruf'); | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function isErwerbstaetig(): bool | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function isArbeitnehmer(): bool | ||
{ | ||
return false; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function hasEntgeltfortzahlung(): bool | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function hasAnspruchGrv(): bool | ||
{ | ||
return false; | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
src/Werte/Person/Taetigkeitsstatus/Status/BeamterAufZeit.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
|
||
namespace Demv\Werte\Person\Taetigkeitsstatus\Status; | ||
|
||
use Demv\Werte\Person\Taetigkeitsstatus\TaetigkeitsstatusInterface; | ||
use Demv\Werte\Value; | ||
|
||
/** | ||
* Class BeamterAufZeit | ||
* @package Demv\Werte\Person\Taetigkeitsstatus\Status | ||
*/ | ||
final class BeamterAufZeit extends Value implements TaetigkeitsstatusInterface | ||
{ | ||
const ID = 31; | ||
|
||
public function __construct() | ||
{ | ||
parent::__construct(self::ID, 'Beamter auf Zeit'); | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function isErwerbstaetig(): bool | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function isArbeitnehmer(): bool | ||
{ | ||
return false; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function hasEntgeltfortzahlung(): bool | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function hasAnspruchGrv(): bool | ||
{ | ||
return false; | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
src/Werte/Person/Taetigkeitsstatus/Status/BeamterAusschliesslichAufProbe.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
|
||
namespace Demv\Werte\Person\Taetigkeitsstatus\Status; | ||
|
||
use Demv\Werte\Person\Taetigkeitsstatus\TaetigkeitsstatusInterface; | ||
use Demv\Werte\Value; | ||
|
||
/** | ||
* Class BeamterAusschliesslichAufProbe | ||
* @package Demv\Werte\Person\Taetigkeitsstatus\Status | ||
*/ | ||
final class BeamterAusschliesslichAufProbe extends Value implements TaetigkeitsstatusInterface | ||
{ | ||
const ID = 30; | ||
|
||
public function __construct() | ||
{ | ||
parent::__construct(self::ID, 'Beamter auf Probe'); | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function isErwerbstaetig(): bool | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function isArbeitnehmer(): bool | ||
{ | ||
return false; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function hasEntgeltfortzahlung(): bool | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function hasAnspruchGrv(): bool | ||
{ | ||
return false; | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
src/Werte/Person/Taetigkeitsstatus/Status/Berufssoldat.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
|
||
namespace Demv\Werte\Person\Taetigkeitsstatus\Status; | ||
|
||
use Demv\Werte\Person\Taetigkeitsstatus\TaetigkeitsstatusInterface; | ||
use Demv\Werte\Value; | ||
|
||
/** | ||
* Class Berufssoldat | ||
* @package Demv\Werte\Person\Taetigkeitsstatus\Status | ||
*/ | ||
final class Berufssoldat extends Value implements TaetigkeitsstatusInterface | ||
{ | ||
const ID = 28; | ||
|
||
public function __construct() | ||
{ | ||
parent::__construct(self::ID, 'Berufssoldat'); | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function isErwerbstaetig(): bool | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function isArbeitnehmer(): bool | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function hasEntgeltfortzahlung(): bool | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function hasAnspruchGrv(): bool | ||
{ | ||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
|
||
namespace Demv\Werte\Person\Taetigkeitsstatus\Status; | ||
|
||
use Demv\Werte\Person\Taetigkeitsstatus\TaetigkeitsstatusInterface; | ||
use Demv\Werte\Value; | ||
|
||
/** | ||
* Class Zeitsoldat | ||
* @package Demv\Werte\Person\Taetigkeitsstatus\Status | ||
*/ | ||
final class Zeitsoldat extends Value implements TaetigkeitsstatusInterface | ||
{ | ||
const ID = 27; | ||
|
||
public function __construct() | ||
{ | ||
parent::__construct(self::ID, 'Zeitsoldat'); | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function isErwerbstaetig(): bool | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function isArbeitnehmer(): bool | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function hasEntgeltfortzahlung(): bool | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function hasAnspruchGrv(): bool | ||
{ | ||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.