Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 720 Rev 721
Línea 88... Línea 88...
88
        $select->where->equalTo('company_id', $company_id);
88
        $select->where->equalTo('company_id', $company_id);
89
        $select->order('name');
89
        $select->order('name');
Línea 90... Línea 90...
90
        
90
        
91
        return $this->executeFetchAllObject($select, $prototype);
91
        return $this->executeFetchAllObject($select, $prototype);
-
 
92
    }
-
 
93
 
-
 
94
    /**
-
 
95
     *
-
 
96
     * @param int $selection_id
-
 
97
     * @return RecruitmentSelectionCandidate
-
 
98
     */
-
 
99
    public function fetchAllBySelectionId($selection_id)
-
 
100
    {
-
 
101
        $prototype = new RecruitmentSelectionCandidate();
-
 
102
        
-
 
103
        $select = $this->sql->select(self::_TABLE);
-
 
104
        $select->where->equalTo('selection_id', $selection_id);
-
 
105
        $select->order('first_name');
-
 
106
        
-
 
107
        return $this->executeFetchAllObject($select, $prototype);
Línea 92... Línea 108...
92
    }
108
    }
93
    
109
    
94
     /**
110
     /**
95
     *
111
     *