1 <?php
2
3 /* --------------------------------------------------------------
4 AbstractProductAttributeServiceFactory.inc.php 2016-01-18
5 Gambio GmbH
6 http://www.gambio.de
7 Copyright (c) 2015 Gambio GmbH
8 Released under the GNU General Public License (Version 2)
9 [http://www.gnu.org/licenses/gpl-2.0.html]
10 --------------------------------------------------------------
11 */
12
13 /**
14 * Class AbstractProductAttributeServiceFactory
15 *
16 * @category System
17 * @package ProductModule
18 * @subpackage Factories
19 */
20 abstract class AbstractProductAttributeServiceFactory
21 {
22 /**
23 * Creates a product attribute object service.
24 *
25 * @return ProductAttributeObjectService
26 */
27 abstract public function createProductAttributeObjectService();
28
29
30 /**
31 * Creates a product attribute service.
32 *
33 * @return ProductAttributeService
34 */
35 abstract public function createProductAttributeService();
36 }