Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 540 | Rev 550 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 540 Rev 543
Línea 64... Línea 64...
64
     * @return JobDescription[]
64
     * @return JobDescription[]
65
     */
65
     */
66
    public function fetchAllByDefault() {
66
    public function fetchAllByDefault() {
67
        $select = $this->sql->select(self::_TABLE);
67
        $select = $this->sql->select(self::_TABLE);
68
        $select->where->isNull('company_id');
68
        $select->where->isNull('company_id');
69
 
-
 
70
        $prototype = new JobDescription();
69
        $prototype = new JobDescription();
71
        return $this->executeFetchAllObject($select, $prototype);
70
        return $this->executeFetchAllObject($select, $prototype);
72
    }
71
    }
Línea 73... Línea 72...
73
 
72