summaryrefslogtreecommitdiffstats
path: root/application/models/Pool.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/Pool.php')
-rw-r--r--application/models/Pool.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/application/models/Pool.php b/application/models/Pool.php
index 11d5a03..f312b19 100644
--- a/application/models/Pool.php
+++ b/application/models/Pool.php
@@ -3,6 +3,7 @@
class Application_Model_Pool
{
protected $_poolID;
+ protected $_groupID;
protected $_title;
protected $_description;
protected $_location;
@@ -54,6 +55,15 @@ class Application_Model_Pool
$this->_poolID = $_poolID;
return $this;
}
+ public function getGroupID()
+ {
+ return $this->_groupID;
+ }
+ public function setGroupID($_groupID)
+ {
+ $this->_groupID = $_groupID;
+ return $this;
+ }
public function getTitle()
{
return $this->_title;