Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 234 Rev 235
Línea 65... Línea 65...
65
     * @param int $uuid
65
     * @param int $uuid
66
     * @return CompanySelfEvaluationForm
66
     * @return CompanySelfEvaluationForm
67
     */
67
     */
68
    public function fetchOneByUuid($uuid)
68
    public function fetchOneByUuid($uuid)
69
    {
69
    {
70
        $prototype = new CompanySelfEvaluationForm;
70
        $prototype = new CompanySelfEvaluationForm();
71
        $select = $this->sql->select(self::_TABLE);
71
        $select = $this->sql->select(self::_TABLE);
72
        $select->where->equalTo('uuid', $uuid);
72
        $select->where->equalTo('uuid', $uuid);
Línea 73... Línea 73...
73
        
73
        
74
        return $this->executeFetchOneObject($select, $prototype);
74
        return $this->executeFetchOneObject($select, $prototype);
Línea 75... Línea 75...
75
    }
75
    }
-
 
76
   
-
 
77
    
-
 
78
    /**
-
 
79
     *
-
 
80
     * @param int $company_id
-
 
81
     * @return CompanySelfEvaluationForm
-
 
82
     */
-
 
83
    public function fetchAllByCompanyId($company_id)
-
 
84
    {
-
 
85
        $prototype = new CompanySelfEvaluationForm();
-
 
86
        
-
 
87
        $select = $this->sql->select(self::_TABLE);
-
 
88
        $select->where->equalTo('company_id', $company_id);
-
 
89
        $select->order('name');
-
 
90
        
-
 
91
        return $this->executeFetchAllObject($select, $prototype);
-
 
92
    }
76
   
93
    
77
    
94
    
78
    /**
95
    /**
79
     * 
96
     * 
80
     * @param CompanySelfEvaluationForm $form
97
     * @param CompanySelfEvaluationForm $form