Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1489 | Rev 1495 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1489 Rev 1494
Línea 107... Línea 107...
107
        $select->order('id');
107
        $select->order('id');
Línea 108... Línea 108...
108
        
108
        
109
        return $this->executeFetchAllObject($select, $prototype);
109
        return $this->executeFetchAllObject($select, $prototype);
Línea -... Línea 110...
-
 
110
    }
-
 
111
    
-
 
112
      /**
-
 
113
     *
-
 
114
     * @param int $survey_id
-
 
115
     * @return Survey
-
 
116
     */
-
 
117
    public function fetchOneBySurveyId($survey_id)
-
 
118
    {
-
 
119
        $prototype = new SurveyTest();
-
 
120
        
-
 
121
        $select = $this->sql->select(self::_TABLE);
-
 
122
        $select->where->equalTo('survey_id', $survey_id);
-
 
123
        $select->order('id');
-
 
124
        
Línea 110... Línea 125...
110
    }
125
        return $this->executeFetchOneObject($select, $prototype);
111
    
126
    }
112
    
127
    
113
    /**
128
    /**