Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1277 Rev 1278
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);
107
    }
116
        $select->where->equalTo('status', RecruitmentSelectionCandidate::STATUS_ACEPTED);
-
 
117
        $select->order('first_name');
-
 
118
 
Línea 108... Línea 119...
108
 
119
        return $this->executeFetchAllObject($select, $prototype);
109
   
120
    }
110
 
121
 
111
    /**
122
    /**