1 | <?php |
||
21 | class District extends Entity |
||
22 | { |
||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | private $district; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | private $zone; |
||
32 | |||
33 | /** |
||
34 | * Get District |
||
35 | * |
||
36 | * @return string |
||
37 | */ |
||
38 | 3 | public function getDistrict() |
|
47 | |||
48 | /** |
||
49 | * Get District |
||
50 | * |
||
51 | * @param string $district |
||
52 | * |
||
53 | * @return District |
||
54 | */ |
||
55 | 2 | public function setDistrict($district) |
|
60 | |||
61 | /** |
||
62 | * Get Zone |
||
63 | * |
||
64 | * @return string |
||
65 | */ |
||
66 | 2 | public function getZone() |
|
70 | |||
71 | /** |
||
72 | * Get Zone |
||
73 | * |
||
74 | * @param string $zone |
||
75 | * |
||
76 | * @return District |
||
77 | */ |
||
78 | 1 | public function setZone($zone) |
|
83 | } |
||
84 |