1 <?php
2 /* --------------------------------------------------------------
3 CustomerAddressWriterInterface.inc.php 2015-02-18 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 * Interface CustomerAddressWriterInterface
14 *
15 * @category System
16 * @package Customer
17 * @subpackage Interfaces
18 */
19 interface CustomerAddressWriterInterface
20 {
21 /**
22 * Method to write a customer address into the database
23 *
24 * @param \CustomerAddressInterface $address
25 */
26 public function write(CustomerAddressInterface $address);
27
28 }