Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 647 Rev 686
Línea 89... Línea 89...
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);
Línea -... Línea 92...
-
 
92
    }
-
 
93
    
-
 
94
     /**
-
 
95
     *
-
 
96
     * @param int $company_id
-
 
97
     * @param int $selection_id
-
 
98
     * @param int $user_id
-
 
99
     * @return RecruitmentSelectionVacancy
-
 
100
     */
-
 
101
    public function fetchAllByCompanyIdAndSelectionIdAndUserId($company_id, $selection_id, $user_id)
-
 
102
    {
-
 
103
        $prototype = new RecruitmentSelectionVacancy();
-
 
104
        
-
 
105
        $select = $this->sql->select(self::_TABLE);
-
 
106
        $select->where->equalTo('company_id', $company_id);
-
 
107
        $select->where->equalTo('selection_id', $selection_id);
-
 
108
        $select->where->equalTo('user_id', $user_id);
-
 
109
        
-
 
110
        
-
 
111
        return $this->executeFetchOneObject($select, $prototype);
Línea 92... Línea 112...
92
    }
112
    }
93
    
113
    
94
    
114
    
95
    /**
115
    /**