Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1278 Rev 1286
Línea 104... Línea 104...
104
        $select->order('first_name');
104
        $select->order('first_name');
Línea 105... Línea 105...
105
        
105
        
106
        return $this->executeFetchAllObject($select, $prototype);
106
        return $this->executeFetchAllObject($select, $prototype);
Línea 107... Línea 107...
107
    }
107
    }
108
 
108
 
109
      /**
109
    /**
110
     *
110
     *
111
     * @return RecruitmentSelectionCandidate[]
111
     * @return RecruitmentSelectionCandidate[]
112
     */
112
     */
113
    public function fetchAllActives() {
113
    public function fetchAllActives($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);
Línea 116... Línea 117...
116
        $select->where->equalTo('status', RecruitmentSelectionCandidate::STATUS_ACEPTED);
117
        $select->where->equalTo('status', RecruitmentSelectionCandidate::STATUS_ACEPTED);
117
        $select->order('first_name');
118
        $select->order('first_name');