Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4776 Rev 5050
Línea 60... Línea 60...
60
    }
60
    }
Línea 61... Línea 61...
61
    
61
    
62
    
62
    
63
    /**
63
    /**
64
     *
64
     *
65
     * @param int $uuid
65
     * @param string $uuid
66
     * @return RecruitmentSelectionCandidate
66
     * @return RecruitmentSelectionCandidate
67
     */
67
     */
68
    public function fetchOneByUuid($uuid)
68
    public function fetchOneByUuid($uuid)
69
    {
69
    {
70
        $prototype = new RecruitmentSelectionCandidate();
70
        $prototype = new RecruitmentSelectionCandidate();
Línea 71... Línea 71...
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);
-
 
73
        
-
 
74
        return $this->executeFetchOneObject($select, $prototype);
-
 
75
    }
-
 
76
    
-
 
77
    
-
 
78
    /**
-
 
79
     *
-
 
80
     * @param string $email
-
 
81
     * @return RecruitmentSelectionCandidate
-
 
82
     */
-
 
83
    public function fetchOneByEmail($email)
-
 
84
    {
-
 
85
        $prototype = new RecruitmentSelectionCandidate();
-
 
86
        $select = $this->sql->select(self::_TABLE);
-
 
87
        $select->where->equalTo('email', $email);
Línea 73... Línea 88...
73
        
88
        
74
        return $this->executeFetchOneObject($select, $prototype);
89
        return $this->executeFetchOneObject($select, $prototype);
75
    }
90
    }
76
   
91