Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 720 Rev 992
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 $company_id
-
 
97
     * @return RecruitmentSelectionVacancy()
-
 
98
     */
-
 
99
    public function fetchOneByCompanyId($company_id)
-
 
100
    {
-
 
101
        $prototype = new RecruitmentSelectionVacancy();
-
 
102
        
-
 
103
        $select = $this->sql->select(self::_TABLE);
-
 
104
        $select->where->equalTo('company_id', $company_id);
-
 
105
        $select->order('name');
-
 
106
        
-
 
107
        return $this->executeFetchAllObject($select, $prototype);
Línea 92... Línea 108...
92
    }
108
    }
93
    
109
    
94
    
110