Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1012 Rev 1059
Línea 84... Línea 84...
84
    {
84
    {
85
        $prototype = new RecruitmentSelectionCandidate();
85
        $prototype = new RecruitmentSelectionCandidate();
Línea 86... Línea 86...
86
        
86
        
87
        $select = $this->sql->select(self::_TABLE);
87
        $select = $this->sql->select(self::_TABLE);
88
        $select->where->equalTo('company_id', $company_id);
88
        $select->where->equalTo('company_id', $company_id);
Línea 89... Línea 89...
89
        $select->order('name');
89
        $select->order('first_name');
90
        
90
        
Línea 91... Línea 91...
91
        return $this->executeFetchAllObject($select, $prototype);
91
        return $this->executeFetchAllObject($select, $prototype);
Línea 118... Línea 118...
118
        $prototype = new RecruitmentSelectioncandidate();
118
        $prototype = new RecruitmentSelectioncandidate();
Línea 119... Línea 119...
119
        
119
        
120
        $select = $this->sql->select(self::_TABLE);
120
        $select = $this->sql->select(self::_TABLE);
121
        $select->where->equalTo('company_id', $company_id);
121
        $select->where->equalTo('company_id', $company_id);
122
        $select->where->equalTo('vacancy_id', $vacancy_id);
122
        $select->where->equalTo('vacancy_id', $vacancy_id);
Línea 123... Línea 123...
123
        $select->order(['order', 'firs_name']);
123
        $select->order(['order', 'first_name']);
Línea 124... Línea 124...
124
        
124
        
125
        //echo $select->getSqlString($this->adapter->platform); exit;
125
        //echo $select->getSqlString($this->adapter->platform); exit;