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 73... Línea 73...
73
        $select = $this->sql->select(self::_TABLE);
73
        $select = $this->sql->select(self::_TABLE);
74
        $select->where->equalTo('uuid', $uuid);
74
        $select->where->equalTo('uuid', $uuid);
Línea 75... Línea 75...
75
        
75
        
76
        return $this->executeFetchOneObject($select, $prototype);
76
        return $this->executeFetchOneObject($select, $prototype);
-
 
77
    }
-
 
78
    
-
 
79
    
-
 
80
    /**
-
 
81
     *
-
 
82
     * @param int $vacancy_id
-
 
83
     * @return RecruitmentSelectionInterview[]
-
 
84
     */
-
 
85
    public function fetchAllByVacancyId($vacancy_id)
-
 
86
    {
-
 
87
        $prototype = new RecruitmentSelectionInterview();
-
 
88
        
-
 
89
        $select = $this->sql->select(self::_TABLE);
-
 
90
        $select->where->equalTo('vacancy_id', $vacancy_id);
-
 
91
 
-
 
92
        return $this->executeFetchAllObject($select, $prototype);
Línea 77... Línea 93...
77
    }
93
    }