1 <?php
2 /* --------------------------------------------------------------
3 CustomerCountryInterface.inc.php 2014-12-16 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 CustomerCountryInterface
14 *
15 * @category System
16 * @package Customer
17 * @subpackage Interfaces
18 */
19 interface CustomerCountryInterface
20 {
21 public function getId();
22 public function getName();
23
24 public function getIso2();
25 public function getIso3();
26
27 public function getAddressFormatId();
28 public function getStatus();
29 }