Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 3454 Rev 3471
Línea 121... Línea 121...
121
    }
121
    }
Línea 122... Línea 122...
122
 
122
 
123
    /**
123
    /**
124
     *
124
     *
125
     * @param int $candidate_id
125
     * @param int $candidate_id
126
     * @return RecruitmentSelectionCandidates[]
126
     * @return RecruitmentSelectionCandidate[]
127
     */
127
     */
128
    public function fetchAllByVacancyIdAndStatus($vacancy_id)
128
    public function fetchAllByVacancyIdAndStatus($vacancy_id)
129
    {
129
    {
Línea 130... Línea 130...
130
        $prototype = new RecruitmentSelectionCandidates();
130
        $prototype = new RecruitmentSelectionCandidate();
131
        
131
        
132
        $select = $this->sql->select(self::_TABLE);
132
        $select = $this->sql->select(self::_TABLE);
133
        $select->where->equalTo('vacancy_id', $vacancy_id);
133
        $select->where->equalTo('vacancy_id', $vacancy_id);
Línea 134... Línea 134...
134
        $select->where->equalTo('status', RecruitmentSelectionCandidates::STATUS_ACCEPTED);
134
        $select->where->equalTo('status', RecruitmentSelectionCandidate::STATUS_ACCEPTED);
135
        $select->order('first_name');
135
        $select->order('first_name');