Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1670 Rev 1676
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
    * 
-
 
65
    * @param int $id
-
 
66
    * @return CompanyPerformanceEvaluationTestBoth
-
 
67
    */
-
 
68
    public function fetchOneByTestId($test_id)
-
 
69
    {
-
 
70
        $prototype = new CompanyPerformanceEvaluationTestBoth();
60
    }
71
        
-
 
72
        $select = $this->sql->select(self::_TABLE);
-
 
73
        $select->where->equalTo('test_id', $test_id);
Línea 61... Línea 74...
61
    
74
        
62
 
75
        return $this->executeFetchOneObject($select, $prototype);
63
    
76
    }
64
    
77