예제 #1
0
 private function setPersonParam(PersonController $cPerson)
 {
     $this->_id = $cPerson->getId();
     $this->_lastName = $cPerson->getLastName();
     $this->_firstName = $cPerson->getFirstName();
     $this->_middleName = $cPerson->getMiddleName();
     $this->_aliasName = $cPerson->getAliasName();
     $this->_birthMonth = $cPerson->getBirthMonth();
     $this->_birthDay = $cPerson->getBirthDay();
     $this->_birthYear = $cPerson->getBirthYear();
     $this->_note = $cPerson->getNote();
 }