* @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 * @link http://orange-management.com */ namespace Modules\HumanResources\Models; use phpOMS\Datatypes\Enum; /** * Position type enum. * * @category Module * @package Modules\HumanResources * @author OMS Development Team * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 */ abstract class PositionType extends Enum { const INTERN = 0; const APPRENTICE = 1; const JUNIOR = 2; const REGULAR = 3; const SENIOR = 4; const ASSISTANT = 5; const TEAMLEADER = 6; const HEAD = 7; }