Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 528 Rev 529
Línea 88... Línea 88...
88
    /**
88
    /**
89
     *
89
     *
90
     * @param int $job_description_id
90
     * @param int $job_description_id
91
     * @return JobDescriptionCompetency
91
     * @return JobDescriptionCompetency
92
     */
92
     */
93
    public function fetchByJobDescription($job_description_id)
93
    public function fetchByJobDescriptionId($job_description_id)
94
    {
94
    {
95
        $select = $this->sql->select(self::_TABLE);
95
        $select = $this->sql->select(self::_TABLE);
96
        $select->where->equalTo('job_description_id', $job_description_id);
96
        $select->where->equalTo('job_description_id', $job_description_id);
Línea 97... Línea 97...
97
        
97
        
98
        $prototype = new JobDescriptionCompetency();
98
        $prototype = new JobDescriptionCompetency();
99
        return $this->executeFetchOneObject($select, $prototype);
99
        return $this->executeFetchOneArray($select, $prototype);
Línea 100... Línea 100...
100
    }
100
    }
101
 
101
 
102
    /**
102
    /**