|
@@ -18,7 +18,10 @@ class LuticateUsersDbo extends LuDbo {
|
18
|
18
|
"Username" => $this->_username,
|
19
|
19
|
"Email" => $this->_email,
|
20
|
20
|
"Password" => $this->_password,
|
21
|
|
- "Salt" => $this->_salt
|
|
21
|
+ "Salt" => $this->_salt,
|
|
22
|
+ "ProfileId" => $this->_profileId,
|
|
23
|
+ "Firstname" => $this->_firstname,
|
|
24
|
+ "Lastname" => $this->_lastname
|
22
|
25
|
);
|
23
|
26
|
}
|
24
|
27
|
|
|
@@ -86,4 +89,43 @@ class LuticateUsersDbo extends LuDbo {
|
86
|
89
|
{
|
87
|
90
|
$this->_salt = $value;
|
88
|
91
|
}
|
|
92
|
+
|
|
93
|
+ /**
|
|
94
|
+ * @var integer
|
|
95
|
+ */
|
|
96
|
+ protected $_profileId;
|
|
97
|
+ public function getProfileId()
|
|
98
|
+ {
|
|
99
|
+ return $this->_profileId;
|
|
100
|
+ }
|
|
101
|
+ public function setProfileId($value)
|
|
102
|
+ {
|
|
103
|
+ $this->_profileId = $value;
|
|
104
|
+ }
|
|
105
|
+
|
|
106
|
+ /**
|
|
107
|
+ * @var string
|
|
108
|
+ */
|
|
109
|
+ protected $_firstname;
|
|
110
|
+ public function getFirstname()
|
|
111
|
+ {
|
|
112
|
+ return $this->_firstname;
|
|
113
|
+ }
|
|
114
|
+ public function setFirstname($value)
|
|
115
|
+ {
|
|
116
|
+ $this->_firstname = $value;
|
|
117
|
+ }
|
|
118
|
+
|
|
119
|
+ /**
|
|
120
|
+ * @var string
|
|
121
|
+ */
|
|
122
|
+ protected $_lastname;
|
|
123
|
+ public function getLastname()
|
|
124
|
+ {
|
|
125
|
+ return $this->_lastname;
|
|
126
|
+ }
|
|
127
|
+ public function setLastname($value)
|
|
128
|
+ {
|
|
129
|
+ $this->_lastname = $value;
|
|
130
|
+ }
|
89
|
131
|
}
|