Subversion-Projekte lars-tiefland.prado

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
class Person
4
{
5
    public $ID = -1;
6
    public $FirstName = '';
7
    public $LastName = '';
8
 
9
    public $WeightInKilograms = 0.0;
10
    public $HeightInMeters = 0.0;
11
 
12
    private $_birthDate = '';
13
 
14
    //setters and getter for BirthDate
15
    public function getBirthDate()
16
    {
17
        return $this->_birthDate;
18
    }
19
 
20
    public function setBirthDate($value)
21
    {
22
        $this->_birthDate = $value;
23
    }
24
}
25
 
26
?>