1 | <?php |
||
13 | class CustomerService extends BaseService |
||
14 | { |
||
15 | /** |
||
16 | * @var array Customer |
||
17 | */ |
||
18 | protected $entities = []; |
||
19 | |||
20 | /** |
||
21 | * @param Customer $customer |
||
22 | */ |
||
23 | 3 | public function add(EntityInterface $customer) |
|
29 | |||
30 | /** |
||
31 | * @param $array |
||
32 | * @return Customer |
||
33 | */ |
||
34 | 3 | public function parseArrayToEntity($array) |
|
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | 3 | protected function getLink() |
|
49 | |||
50 | } |