| 1 | <?php |
||
| 7 | class Buyer extends Model |
||
| 8 | { |
||
| 9 | |||
| 10 | protected $id = null; |
||
| 11 | |||
| 12 | protected $lastName = null; |
||
| 13 | |||
| 14 | protected $firstName = null; |
||
| 15 | |||
| 16 | protected $middleName = null; |
||
| 17 | |||
| 18 | protected $phone = null; |
||
| 19 | |||
| 20 | protected $email = null; |
||
| 21 | |||
| 22 | protected $mappingClasses = []; |
||
| 23 | |||
| 24 | protected $propNameMap = []; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Retrieve the id property |
||
| 28 | * |
||
| 29 | * @return string|null |
||
| 30 | */ |
||
| 31 | 2 | public function getId() |
|
| 35 | |||
| 36 | /** |
||
| 37 | * Retrieve the lastName property |
||
| 38 | * |
||
| 39 | * @return string|null |
||
| 40 | */ |
||
| 41 | 2 | public function getLastName() |
|
| 45 | |||
| 46 | /** |
||
| 47 | * Retrieve the firstName property |
||
| 48 | * |
||
| 49 | * @return string|null |
||
| 50 | */ |
||
| 51 | 2 | public function getFirstName() |
|
| 55 | |||
| 56 | /** |
||
| 57 | * Retrieve the middleName property |
||
| 58 | * |
||
| 59 | * @return string|null |
||
| 60 | */ |
||
| 61 | 2 | public function getMiddleName() |
|
| 65 | |||
| 66 | /** |
||
| 67 | * Retrieve the phone property |
||
| 68 | * |
||
| 69 | * @return string|null |
||
| 70 | */ |
||
| 71 | 2 | public function getPhone() |
|
| 75 | |||
| 76 | /** |
||
| 77 | * Retrieve the email property |
||
| 78 | * |
||
| 79 | * @return string|null |
||
| 80 | */ |
||
| 81 | 2 | public function getEmail() |
|
| 85 | } |
||
| 86 |