1 <?php
2 /* --------------------------------------------------------------
3 GXCoreLoaderInterface.inc.php 2015-10-05 gm
4 Gambio GmbH
5 http://www.gambio.de
6 Copyright (c) 2015 Gambio GmbH
7 Released under the GNU General Public License (Version 2)
8 [http://www.gnu.org/licenses/gpl-2.0.html]
9 --------------------------------------------------------------
10 */
11
12
13 /**
14 * Interface GXCoreLoaderInterface
15 *
16 * @category System
17 * @package Loaders
18 * @subpackage Interfaces
19 */
20 interface GXCoreLoaderInterface
21 {
22 /**
23 * Get Service Object
24 *
25 * @param string $serviceName
26 *
27 * @return AddressBookService|CountryService|CustomerService
28 * @throws DomainException
29 */
30 public function getService($serviceName);
31
32
33 /**
34 * Get a CodeIgniter Query Builder Object
35 *
36 * @return CI_DB_query_builder
37 */
38 public function getDatabaseQueryBuilder();
39 }