Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

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