示例#1
0
 /**
  * Constructor
  * 
  * @param Boat $model
  */
 function __construct(Boat $model)
 {
     $this->model = $model;
     parent::__construct();
 }
示例#2
0
 /**
  * Constructor
  * 
  * @param Subdestination $model
  */
 function __construct(Subdestination $model)
 {
     $this->model = $model;
     parent::__construct();
 }
示例#3
0
 /**
  * Constructor
  * 
  * @param Category $model
  */
 function __construct(Category $model)
 {
     $this->model = $model;
     parent::__construct();
 }