/** * Constructor * * @param Boat $model */ function __construct(Boat $model) { $this->model = $model; parent::__construct(); }
/** * Constructor * * @param Subdestination $model */ function __construct(Subdestination $model) { $this->model = $model; parent::__construct(); }
/** * Constructor * * @param Category $model */ function __construct(Category $model) { $this->model = $model; parent::__construct(); }