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,26 @@
<?php
/**
* Subclass for performing query and update operations on the 'LU_Employee_Position' table.
*
*
*
* @package lib.model
*/
class LuEmployeePositionPeer extends BaseLuEmployeePositionPeer
{
/**
* Get the id of the lookup employee position by
* the position name
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public static function getIdByPosition($position)
{
$c = new Criteria();
$c->add(self::POSITION, $position);
return self::doSelectOne($c)->getId();
}
}