Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1246 Rev 1255
Línea 158... Línea 158...
158
        $select->where->equalTo('vacancy_id', $vacancy_id);
158
        $select->where->equalTo('vacancy_id', $vacancy_id);
159
        $select->order(['uuid']);
159
        $select->order(['uuid']);
Línea 160... Línea 160...
160
                
160
                
161
        return $this->executeFetchOneObject($select, $prototype);
161
        return $this->executeFetchOneObject($select, $prototype);
-
 
162
    }
-
 
163
 
-
 
164
        /**
-
 
165
     * @param int $vacancy_id
-
 
166
     * @param int $candidate_id
-
 
167
     * @return RecruitmentSelectionInterview
-
 
168
     */
-
 
169
    public function fetchAllByCandidateIdAndVacancyId($candidate_id, $vacancy_id)
-
 
170
    {
-
 
171
        $prototype = new RecruitmentSelectionInterview();
-
 
172
        
-
 
173
        $select = $this->sql->select(self::_TABLE);
-
 
174
        $select->where->equalTo('candidate_id', $candidate_id);
-
 
175
        $select->where->equalTo('vacancy_id', $vacancy_id);
-
 
176
        $select->order(['uuid']);
-
 
177
                
-
 
178
        return $this->executeFetchAllObject($select, $prototype);
Línea 162... Línea 179...
162
    }
179
    }
163
    
180
    
164
    /**
181
    /**
165
     * 
182
     *