Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4776 Rev 5050
Línea 57... Línea 57...
57
        $select->where->equalTo('id', $id);
57
        $select->where->equalTo('id', $id);
Línea 58... Línea 58...
58
        
58
        
59
        return $this->executeFetchOneObject($select, $prototype);
59
        return $this->executeFetchOneObject($select, $prototype);
Línea -... Línea 60...
-
 
60
    }
-
 
61
    
-
 
62
    /**
-
 
63
     *
-
 
64
     * @param int $vacancy_id
-
 
65
     * @param int $candidate_id
-
 
66
     * @return RecruitmentSelectionApplication
-
 
67
     */
-
 
68
    public function fetchOneByVancancyIdAndCandidateId($vacancy_id, $candidate_id)
-
 
69
    {
-
 
70
        
-
 
71
        $select = $this->sql->select(self::_TABLE);
-
 
72
        $select->where->equalTo('vacancy_id', $vacancy_id);
-
 
73
        $select->where->equalTo('candidate_id', $candidate_id);
-
 
74
        
-
 
75
        $prototype = new RecruitmentSelectionApplication();
-
 
76
        return $this->executeFetchOneObject($select, $prototype);
Línea 60... Línea 77...
60
    }
77
    }
61
    
78
    
62
    
79
    
63
    /**
80
    /**