1 <?php
2
3 /* --------------------------------------------------------------
4 ProductAttributeObjectServiceInterface.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 interface ProductAttributeObjectServiceInterface
14 {
15 /**
16 * Creates a new instance of a product attribute object.
17 *
18 * @param IdType $optionId Option id of product attribute.
19 * @param IdType $valueId Value id of product attribute.
20 *
21 * @return ProductAttributeInterface New instance of product attribute.
22 */
23 public function createProductAttributeObject(IdType $optionId, IdType $valueId);
24 }