Example #1
0
function ComboGuardia($first = true, $text = 'Seleccione el guardia...')
{
    $guardiaDAO = new GuardiaDAO();
    return PresentationUtil::getCombo($guardiaDAO->getAll("nombre"), "nombre", $first, $text);
}