Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1639 Rev 1640
Línea 93... Línea 93...
93
        return $this->executeFetchAllObject($select, $prototype);
93
        return $this->executeFetchAllObject($select, $prototype);
94
    }
94
    }
Línea 95... Línea 95...
95
 
95
 
96
     /**
96
     /**
97
     *
97
     *
98
     * @param int $survey_id
98
     * @param int $organizationalClimate_id
99
     * @return OrganizationalClimateTest
99
     * @return OrganizationalClimateTest
100
     */
100
     */
101
    public function fetchAllBySurveyId($survey_id)
101
    public function fetchAllBySurveyId($organizationalClimate_id)
102
    {
102
    {
Línea 103... Línea 103...
103
        $prototype = new OrganizationalClimateTest();
103
        $prototype = new OrganizationalClimateTest();
104
        
104
        
105
        $select = $this->sql->select(self::_TABLE);
105
        $select = $this->sql->select(self::_TABLE);
Línea 106... Línea 106...
106
        $select->where->equalTo('survey_id', $survey_id);
106
        $select->where->equalTo('organizationalClimate_id', $organizationalClimate_id);
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);
110
    }
110
    }
111
    
111
    
112
      /**
112
      /**
113
     *
113
     *
114
     * @param int $survey_id
114
     * @param int $organizationalClimate_id
115
     * @return OrganizationalClimateTest
115
     * @return OrganizationalClimateTest
116
     */
116
     */
117
    public function fetchOneBySurveyId($survey_id)
117
    public function fetchOneBySurveyId($organizationalClimate_id)
Línea 118... Línea 118...
118
    {
118
    {
119
        $prototype = new OrganizationalClimateTest();
119
        $prototype = new OrganizationalClimateTest();
Línea 120... Línea 120...
120
        $select = $this->sql->select(self::_TABLE);
120
        $select = $this->sql->select(self::_TABLE);