Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1286 Rev 3454
Línea 108... Línea 108...
108
 
108
 
109
    /**
109
    /**
110
     *
110
     *
111
     * @return RecruitmentSelectionCandidate[]
111
     * @return RecruitmentSelectionCandidate[]
112
     */
112
     */
113
    public function fetchAllActives($vacancy_id) {
113
    public function fetchAllActive($vacancy_id) {
114
        $prototype = new RecruitmentSelectionCandidate();
114
        $prototype = new RecruitmentSelectionCandidate();
115
        $select = $this->sql->select(self::_TABLE);
115
        $select = $this->sql->select(self::_TABLE);
116
        $select->where->equalTo('vacancy_id', $vacancy_id);
116
        $select->where->equalTo('vacancy_id', $vacancy_id);
117
        $select->where->equalTo('status', RecruitmentSelectionCandidate::STATUS_ACEPTED);
117
        $select->where->equalTo('status', RecruitmentSelectionCandidate::STATUS_ACEPTED);