1 <?php
2 /* --------------------------------------------------------------
3 CustomerCountryZoneInterface.inc.php 2015-02-18 gm
4 Gambio GmbH
5 http://www.gambio.de
6 Copyright (c) 2014 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 * Interface CustomerCountryZoneInterface
14 *
15 * @category System
16 * @package Customer
17 * @subpackage Interfaces
18 */
19 interface CustomerCountryZoneInterface
20 {
21
22
23 /**
24 * Getter method for the ID
25 *
26 * @return int countryId
27 */
28 public function getId();
29
30
31 /**
32 * Getter method for the name
33 *
34 * @return CustomerCountryZoneNameInterface country zone name
35 */
36 public function getName();
37
38
39 /**
40 * Getter method for the customer country zone ISO 2 code
41 *
42 * @return CustomerCountryZoneIsoCodeInterface iso2 code
43 */
44 public function getCode();
45 }