initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:57:21 -06:00
commit fd8ad64063
22097 changed files with 1960930 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
/**
* Subclass for representing a row from the 'Employee' table.
*
*
*
* @package lib.model
*/
class Employee extends BaseEmployee
{
/**
* Gets the text of the position linked to
* in the LuEmployeePosition table
*
* @return position text
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function getPositionText()
{
return $this->getLuEmployeePosition()->getPosition();
}
}