Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1202 Rev 1204
Línea 95... Línea 95...
95
     /**
95
     /**
96
     *
96
     *
97
     * @param int $candidate_id
97
     * @param int $candidate_id
98
     * @return RecruitmentSelectionInterview
98
     * @return RecruitmentSelectionInterview
99
     */
99
     */
100
    public function fetchAllByCandidateId($candidate_id)
100
    public function fetchAllByVacancyId($vacancy_id)
101
    {
101
    {
102
        $prototype = new RecruitmentSelectionInterview();
102
        $prototype = new RecruitmentSelectionInterview();
Línea 103... Línea 103...
103
        
103
        
104
        $select = $this->sql->select(self::_TABLE);
104
        $select = $this->sql->select(self::_TABLE);
105
        $select->where->equalTo('candidate_id', $candidate_id);
105
        $select->where->equalTo('vacancy_id', $vacancy_id);
Línea 106... Línea 106...
106
        $select->order('first_name');
106
        $select->order('first_name');
107
        
107