Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 262 Rev 279
Línea 98... Línea 98...
98
        
98
        
99
        return $this->executeFetchOneObject($select, $prototype);
99
        return $this->executeFetchOneObject($select, $prototype);
Línea 100... Línea 100...
100
    }
100
    }
-
 
101
    
-
 
102
    
-
 
103
    
-
 
104
    /**
-
 
105
     *
-
 
106
     * @param int $form_id
-
 
107
     * @param int $user_id
-
 
108
     * @return CompanySelfEvaluationFormUser
-
 
109
     */
-
 
110
    public function fetchOneByFormIdAndUserId($form_id, $user_id)
-
 
111
    {
-
 
112
        $prototype = new CompanySelfEvaluationFormUser();
-
 
113
        
-
 
114
        $select = $this->sql->select(self::_TABLE);
-
 
115
        $select->where->equalTo('form_id', $form_id);
-
 
116
        $select->where->equalTo('user_id', $user_id);
-
 
117
        
Línea 101... Línea 118...
101
    
118
        
102
    
119
        return $this->executeFetchOneObject($select, $prototype);
103
 
120
    }