Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1063 Rev 1265
Línea 72... Línea 72...
72
        $select->where->equalTo('uuid', $uuid);
72
        $select->where->equalTo('uuid', $uuid);
Línea 73... Línea 73...
73
        
73
        
74
        return $this->executeFetchOneObject($select, $prototype);
74
        return $this->executeFetchOneObject($select, $prototype);
Línea -... Línea 75...
-
 
75
    }
-
 
76
   
-
 
77
     /**
-
 
78
     *
-
 
79
     * @return RecruitmentSelectionCandidate[]
-
 
80
     */
-
 
81
    public function fetchAllActives() {
-
 
82
        $prototype = new RecruitmentSelectionCandidate();
-
 
83
        $select = $this->sql->select(self::_TABLE);
-
 
84
        $select->where->equalTo('status', RecruitmentSelectionCandidate::STATUS_ACEPTED);
-
 
85
        $select->order('name ASC');
-
 
86
 
Línea 75... Línea 87...
75
    }
87
        return $this->executeFetchAllObject($select, $prototype);
76
   
88
    }
77
    
89
    
78
    /**
90
    /**