From 2435bbaf5d5522c92b13144da2b747002c40a0d8 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 27 Jan 2011 16:51:16 +0100 Subject: updated --- application/models/BootIso.php | 78 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) (limited to 'application/models/BootIso.php') diff --git a/application/models/BootIso.php b/application/models/BootIso.php index 1ceb71d..a9a88d8 100644 --- a/application/models/BootIso.php +++ b/application/models/BootIso.php @@ -2,6 +2,14 @@ class Application_Model_BootIso { + protected $_bootisoID + protected $_membershipID; + protected $_groupID; + protected $_serialnumber; + protected $_created; + protected $_expires; + protected $_public; + public function __construct(array $options = null) { if (is_array($options)) { @@ -39,5 +47,75 @@ class Application_Model_BootIso return $this; } + + public function get_membershipID() + { + return $this->_membershipID; + } + + public function set_membershipID($_membershipID) + { + $this->_membershipID = $_membershipID; + } + + public function get_groupID() + { + return $this->_groupID; + } + + public function set_groupID($_groupID) + { + $this->_groupID = $_groupID; + } + + public function get_serialnumber() + { + return $this->_serialnumber; + } + + public function set_serialnumber($_serialnumber) + { + $this->_serialnumber = $_serialnumber; + } + + public function get_created() + { + return $this->_created; + } + + public function set_created($_created) + { + $this->_created = $_created; + } + + public function get_expires() + { + return $this->_expires; + } + + public function set_expires($_expires) + { + $this->_expires = $_expires; + } + + public function get_public() + { + return $this->_public; + } + + public function set_public($_public) + { + $this->_public = $_public; + } + + public function get_bootisoID() + { + return $this->_bootisoID; + } + + public function set_bootisoID($_bootisoID) + { + $this->_bootisoID = $_bootisoID; + } } -- cgit v1.2.3-55-g7522