-
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.
Neue Beziehungen hinzugefügt (Hauptgeschäftsstelle, Zweigstelle, Gesc…
…häftspartner)
- Loading branch information
1 parent
d79de42
commit b905817
Showing
6 changed files
with
77 additions
and
1 deletion.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
src/Werte/Person/Beziehung/Beruflich/Geschaeftspartner.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,19 @@ | ||
<?php | ||
|
||
namespace Demv\Werte\Person\Beziehung\Beruflich; | ||
|
||
use Demv\Werte\Person\Beziehung\BeziehungsTypInterface; | ||
|
||
/** | ||
* Class Geschaeftspartnerextends | ||
* @package Demv\Werte\Person\Beziehung\Beruflich | ||
*/ | ||
final class Geschaeftspartner extends BeruflicheBeziehung implements BeziehungsTypInterface | ||
{ | ||
const ID = 24; | ||
|
||
public function __construct() | ||
{ | ||
parent::__construct(self::ID, 'Geschäftspartner'); | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
src/Werte/Person/Beziehung/Beruflich/Hauptgeschaeftsstelle.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,19 @@ | ||
<?php | ||
|
||
namespace Demv\Werte\Person\Beziehung\Beruflich; | ||
|
||
use Demv\Werte\Person\Beziehung\BeziehungsTypInterface; | ||
|
||
/** | ||
* Class Hauptgeschaeftsstelle | ||
* @package Demv\Werte\Person\Beziehung\Beruflich | ||
*/ | ||
final class Hauptgeschaeftsstelle extends BeruflicheBeziehung implements BeziehungsTypInterface | ||
{ | ||
const ID = 25; | ||
|
||
public function __construct() | ||
{ | ||
parent::__construct(self::ID, 'Hauptgeschäftsstelle'); | ||
} | ||
} |
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,19 @@ | ||
<?php | ||
|
||
namespace Demv\Werte\Person\Beziehung\Beruflich; | ||
|
||
use Demv\Werte\Person\Beziehung\BeziehungsTypInterface; | ||
|
||
/** | ||
* Class Zweigstelle | ||
* @package Demv\Werte\Person\Beziehung\Beruflich | ||
*/ | ||
final class Zweigstelle extends BeruflicheBeziehung implements BeziehungsTypInterface | ||
{ | ||
const ID = 26; | ||
|
||
public function __construct() | ||
{ | ||
parent::__construct(self::ID, 'Zweigstelle'); | ||
} | ||
} |
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
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