1 <?php
2 /* --------------------------------------------------------------
3 CustomerAddressDeleterInterface.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 CustomerAddressDeleterInterface
14 *
15 * @category System
16 * @package Customer
17 * @subpackage Interfaces
18 */
19 interface CustomerAddressDeleterInterface
20 {
21 /**
22 * Method to delete a customer address
23 *
24 * @param CustomerAddressInterface $customerAddress
25 */
26 public function delete(CustomerAddressInterface $customerAddress);
27
28
29 /**
30 * Method to delete a customer address with a given customer
31 *
32 * @param CustomerInterface $customer
33 */
34 public function deleteByCustomer(CustomerInterface $customer);
35 }
36