Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 863 Rev 991
Línea 92... Línea 92...
92
    }
92
    }
Línea 93... Línea 93...
93
 
93
 
94
     /**
94
     /**
95
     *
95
     *
-
 
96
     * @param int $company_id
-
 
97
     * @return RecruitmentInterview
-
 
98
     */
-
 
99
    public function fetchOneByCompanyId($company_id)
-
 
100
    {
-
 
101
        $prototype = new RecruitmentInterview();
-
 
102
        
-
 
103
        $select = $this->sql->select(self::_TABLE);
-
 
104
        $select->where->equalTo('company_id', $company_id);
-
 
105
        $select->order('name');
-
 
106
        
-
 
107
        return $this->executeFetchOneObject($select, $prototype);
-
 
108
    }
-
 
109
 
-
 
110
     /**
-
 
111
     *
96
     * @param int $company_id
112
     * @param int $company_id
97
     * @param int $topic_id
113
     * @param int $topic_id
98
     * @return RecruitmentSelectionVacancy[]
114
     * @return RecruitmentSelectionVacancy[]
99
     */
115
     */
100
    public function fetchAllByCompanyIdAndVacancyId($company_id, $vancacy_id)
116
    public function fetchAllByCompanyIdAndVacancyId($company_id, $vancacy_id)