Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1267 Rev 1276
Línea 104... Línea 104...
104
        $select->order('first_name');
104
        $select->order('first_name');
Línea 105... Línea 105...
105
        
105
        
106
        return $this->executeFetchAllObject($select, $prototype);
106
        return $this->executeFetchAllObject($select, $prototype);
Línea -... Línea 107...
-
 
107
    }
-
 
108
 
-
 
109
      /**
-
 
110
     *
-
 
111
     * @return RecruitmentSelectionCandidate[]
-
 
112
     */
-
 
113
    public function fetchAllActives() {
-
 
114
        $prototype = new RecruitmentSelectionCandidate();
-
 
115
        $select = $this->sql->select(self::_TABLE);
-
 
116
        $select->where->equalTo('status', RecruitmentSelectionCandidate::STATUS_ACEPTED);
-
 
117
        $select->order('first_name');
-
 
118
 
-
 
119
        return $this->executeFetchAllObject($select, $prototype);
-
 
120
    }
-
 
121
 
-
 
122
    /**
-
 
123
     *
-
 
124
     * @param int $candidate_id
-
 
125
     * @return RecruitmentSelectionCandidates[]
-
 
126
     */
-
 
127
    public function fetchAllByVacancyIdAndStatus($vacancy_id)
-
 
128
    {
-
 
129
        $prototype = new RecruitmentSelectionCandidates();
-
 
130
        
-
 
131
        $select = $this->sql->select(self::_TABLE);
-
 
132
        $select->where->equalTo('vacancy_id', $vacancy_id);
-
 
133
        $select->where->equalTo('status', RecruitmentSelectionCandidates::STATUS_ACCEPTED);
-
 
134
        $select->order('first_name');
-
 
135
        
-
 
136
        return $this->executeFetchAllObject($select, $prototype);
107
    }
137
    }
108
 
138
 
109
     /**
139
     /**
110
     *
140
     *
111
     * @param int $company_id
141
     * @param int $company_id