Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 193 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 193 Rev 630
Línea 183... Línea 183...
183
        
183
        
184
        return $paginator;
184
        return $paginator;
Línea -... Línea 185...
-
 
185
    }
-
 
186
    
-
 
187
 
-
 
188
    /**
-
 
189
     * 
-
 
190
     * @param int $job_description_id
-
 
191
     * @param int $company_id
-
 
192
     * @return Position[]
-
 
193
     */
-
 
194
    public function fetchAllByJobDescriptionIdAndCompanyId($job_description_id, $company_id)
-
 
195
    {
-
 
196
        $prototype = new Position();
-
 
197
        
-
 
198
        $select = $this->sql->select();
-
 
199
        $select->where->equalTo('job_description_id', $job_description_id);
-
 
200
        $select->where->equalTo('company_id', $company_id);
Línea 185... Línea 201...
185
    }
201
       
186
    
202
        return $this->executeFetchAllObject($select, $prototype);