1 | <?php |
||
8 | class ThreePlCentral |
||
9 | { |
||
10 | private $id; |
||
11 | private $customerId; |
||
12 | private $facilityId; |
||
13 | private $login; |
||
14 | private $password; |
||
15 | |||
16 | public function __construct(string $id, string $customerId, string $facilityId, string $login, string $password) { |
||
23 | |||
24 | public function findOrders(DateTime $beginDate, DateTime $endDate): array |
||
28 | |||
29 | public function getId(): string |
||
33 | |||
34 | public function setId(string $id) |
||
38 | |||
39 | public function getCustomerId(): string |
||
43 | |||
44 | public function setCustomerId(string $customerId) |
||
48 | |||
49 | public function getFacilityId(): string |
||
53 | |||
54 | public function setFacilityId(string $facilityId) |
||
58 | |||
59 | public function getLogin(): string |
||
63 | |||
64 | public function setLogin(string $login) |
||
68 | |||
69 | public function getPassword(): string |
||
73 | |||
74 | public function setPassword(string $password) |
||
78 | } |
||
79 |