Proyectos de Subversion LeadersLinked - Services

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 160
Línea 108... Línea 108...
108
        
108
        
109
        return $this->executeFetchAllObject($select, $prototype);
109
        return $this->executeFetchAllObject($select, $prototype);
Línea -... Línea 110...
-
 
110
    }
-
 
111
 
-
 
112
 
-
 
113
       /**
-
 
114
     * 
-
 
115
     * @param int $vacancy_id
-
 
116
     * @return RecruitmentSelectionFile[]
-
 
117
     */
-
 
118
    public function fetchAllByVacancyIdAndApplicationId($vacancy_id, $application_id)
-
 
119
    {
-
 
120
        $prototype = new RecruitmentSelectionFile();
-
 
121
        
-
 
122
        $select = $this->sql->select(self::_TABLE);
-
 
123
        $select->where->equalTo('vacancy_id', $vacancy_id);
-
 
124
        $select->where->equalTo('application_id', $application_id);
-
 
125
        $select->order('name');
-
 
126
        
Línea 110... Línea 127...
110
    }
127
        return $this->executeFetchAllObject($select, $prototype);
111
 
128
    }
112
 
129
 
113
    
130