ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.GUIService.php
Go to the documentation of this file.
1 <?php declare(strict_types = 1);
2 
20 
24 
29 {
33 
34  public function __construct(
35  InternalDataService $data_service,
36  InternalDomainService $domain_service,
37  InternalGUIService $gui_service
38  ) {
39  $this->data_service = $data_service;
40  $this->domain_service = $domain_service;
41  $this->gui_service = $gui_service;
42  }
43 
44  public function ilBookBulkCreationGUI(
45  \ilObjBookingPool $pool
47  {
48  return new \ilBookBulkCreationGUI(
49  $this->domain_service,
50  $this->gui_service,
51  $pool
52  );
53  }
54 
55 }
ilBookBulkCreationGUI(\ilObjBookingPool $pool)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(InternalDataService $data_service, InternalDomainService $domain_service, InternalGUIService $gui_service)