Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6326 Rev 6330
Línea 11... Línea 11...
11
use Laminas\Db\Adapter\AdapterInterface;
11
use Laminas\Db\Adapter\AdapterInterface;
12
use Laminas\Db\ResultSet\HydratingResultSet;
12
use Laminas\Db\ResultSet\HydratingResultSet;
13
use LeadersLinked\Model\DiscoveryContactLog;
13
use LeadersLinked\Model\DiscoveryContactLog;
14
use LeadersLinked\Mapper\Common\MapperCommon;
14
use LeadersLinked\Mapper\Common\MapperCommon;
15
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
15
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
-
 
16
use LeadersLinked\Model\DiscoveryContact;
Línea 16... Línea 17...
16
 
17
 
17
 
18
 
Línea 48... Línea 49...
48
        return self::$_instance;
49
        return self::$_instance;
49
    }
50
    }
Línea 50... Línea 51...
50
 
51
 
51
    /**
52
    /**
52
     * 
53
     * 
53
     * @return Service[]
54
     * @return DiscoveryContact[]
54
     */
55
     */
55
    public function fetchAll()
56
    public function fetchAll()
56
    {
57
    {
57
        $prototype = new DiscoveryContactLog();
58
        $prototype = new DiscoveryContactLog();
Línea 102... Línea 103...
102
        return $this->executeFetchAllArray($select);
103
        return $this->executeFetchAllArray($select);
103
    }
104
    }
Línea 104... Línea 105...
104
 
105
 
-
 
106
 
-
 
107
    /**
-
 
108
     *
-
 
109
     * @param int $contact_id
-
 
110
     * @return DiscoveryContactLogMapper
-
 
111
     */
-
 
112
    public function fetchOneFirstByContactId($contact_id)
-
 
113
    {
-
 
114
        
-
 
115
        $select = $this->sql->select(self::_TABLE);
-
 
116
        $select->where->equalTo('contact_id', $contact_id);
-
 
117
        $select->order('id ASC');
-
 
118
        
-
 
119
        $prototype = new DiscoveryContactLog();
-
 
120
        return $this->executeFetchOneObject($select, $prototype);
-
 
121
    }
-
 
122
    
105
 
123
    
106
    /**
124
    /**
107
     * 
125
     * 
108
     * @param int $id
126
     * @param int $id
109
     * @return DiscoveryContactLogMapper
127
     * @return DiscoveryContactLogMapper