Proyectos de Subversion LeadersLinked - Services

Rev

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

Rev 1 Rev 163
Línea 90... Línea 90...
90
        $select->where->equalTo('vacancy_id', $vacancy_id);
90
        $select->where->equalTo('vacancy_id', $vacancy_id);
Línea 91... Línea 91...
91
 
91
 
92
        return $this->executeFetchAllObject($select, $prototype);
92
        return $this->executeFetchAllObject($select, $prototype);
Línea -... Línea 93...
-
 
93
    }
-
 
94
   
-
 
95
 
-
 
96
    /**
-
 
97
     *
-
 
98
     * @param int $vacancy_id
-
 
99
     * @param int $application_id
-
 
100
     * @return RecruitmentSelectionInterview[]
-
 
101
     */
-
 
102
    public function fetchAllByVacancyIdAndApplicationId($vacancy_id, $application_id)
-
 
103
    {
-
 
104
        $prototype = new RecruitmentSelectionInterview();
-
 
105
        
-
 
106
        $select = $this->sql->select(self::_TABLE);
-
 
107
        $select->where->equalTo('vacancy_id', $vacancy_id);
-
 
108
        $select->where->equalTo('application_id', $application_id);
-
 
109
        
Línea 93... Línea -...
93
    }
-
 
Línea 94... Línea 110...
94
   
110
        return $this->executeFetchAllObject($select, $prototype);
95
    
111
    }
96
   
112
    
97
    
113