diff options
| author | michael pereira | 2011-03-07 17:54:01 +0100 |
|---|---|---|
| committer | michael pereira | 2011-03-07 17:54:01 +0100 |
| commit | f122bafccf6a81b87d982956f615e70ceaecfeb3 (patch) | |
| tree | 98e9960b2fda10f29765d3382d7fd92cfc100f92 /application/models/PoolEntries.php | |
| parent | BootMenuEntries fertig (diff) | |
| parent | dirty hack entfertn durch findBy-Methode (diff) | |
| download | pbs2-f122bafccf6a81b87d982956f615e70ceaecfeb3.tar.gz pbs2-f122bafccf6a81b87d982956f615e70ceaecfeb3.tar.xz pbs2-f122bafccf6a81b87d982956f615e70ceaecfeb3.zip | |
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/models/PoolEntries.php')
| -rw-r--r-- | application/models/PoolEntries.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/application/models/PoolEntries.php b/application/models/PoolEntries.php index 31caf5f..102dc9d 100644 --- a/application/models/PoolEntries.php +++ b/application/models/PoolEntries.php @@ -2,6 +2,7 @@ class Application_Model_PoolEntries { + protected $_poolentriesID; protected $_poolID; protected $_clientID; @@ -42,7 +43,15 @@ class Application_Model_PoolEntries return $this; } - + public function getID() + { + return $this->_poolentriesID; + } + public function setID($_poolentriesID) + { + $this->_poolentriesID = $_poolentriesID; + return $this; + } public function getPoolID() { return $this->_poolID; |
