Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1674 Rev 1675
Línea 57... Línea 57...
57
        $select->where->equalTo('id', $id);
57
        $select->where->equalTo('id', $id);
Línea 58... Línea 58...
58
        
58
        
59
        return $this->executeFetchOneObject($select, $prototype);
59
        return $this->executeFetchOneObject($select, $prototype);
Línea -... Línea 60...
-
 
60
    }
-
 
61
    
-
 
62
     /**
-
 
63
     * 
-
 
64
     * @param int $id
-
 
65
     * @return CompanyPerformanceEvaluationTestSelf
-
 
66
     */
-
 
67
    public function fetchOneByTestId($test_id)
-
 
68
    {
-
 
69
        $prototype = new CompanyPerformanceEvaluationTestSelf();
-
 
70
        
60
    }
71
        $select = $this->sql->select(self::_TABLE);
-
 
72
        $select->where->equalTo('test_id', $test_id);
-
 
73
        
Línea 61... Línea 74...
61
    
74
        return $this->executeFetchOneObject($select, $prototype);
62
 
75
    }
63
    
76