1 | <?php |
||
12 | class CompanyService extends BaseService |
||
13 | { |
||
14 | /** |
||
15 | * @var array Contact |
||
16 | */ |
||
17 | protected $entities = []; |
||
18 | |||
19 | /** |
||
20 | * @param Company $company |
||
21 | */ |
||
22 | 3 | public function add(EntityInterface $company) |
|
28 | |||
29 | /** |
||
30 | * @param $array |
||
31 | * @return Company |
||
32 | */ |
||
33 | 3 | public function parseArrayToEntity($array) |
|
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | 3 | protected function getLink() |
|
48 | } |