Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 2161 Rev 3831
Línea 161... Línea 161...
161
        $select->where->equalTo('uuid', $uuid);
161
        $select->where->equalTo('uuid', $uuid);
Línea 162... Línea 162...
162
        
162
        
163
        return $this->executeFetchOneObject($select, $prototype);
163
        return $this->executeFetchOneObject($select, $prototype);
Línea -... Línea 164...
-
 
164
    }
-
 
165
   
-
 
166
    public function fetchOneByUuidAndCompanyId($uuid, $company_id)
-
 
167
    {
-
 
168
        $prototype = new PlanningObjectivesAndGoalsObjectives();
-
 
169
        $select = $this->sql->select(self::_TABLE);
164
    }
170
        $select->where->equalTo('uuid', $uuid);
-
 
171
        $select->where->equalTo('company_id', $company_id);
-
 
172
        
Línea 165... Línea 173...
165
   
173
        return $this->executeFetchOneObject($select, $prototype);
166
   
174
    }