示例#1
0
文件: Role.php 项目: arjint2004/12516
 /**
  * 	Construct Class
  *
  * 	@param array $data An array with the data of a Role
  */
 public function __construct($data, $ipPerson)
 {
     parent::__construct($data);
     $this->_data['person_id'] = $person_id;
 }
示例#2
0
 /**
  * 	Construct Class
  *
  * 	@param array $data An array with the data of the Episode
  */
 public function __construct($data, $idTVShow)
 {
     parent::__construct($data);
     $this->_data['tvshow_id'] = $idTVShow;
 }