コード例 #1
0
ファイル: Address.php プロジェクト: elminero/contact_v1.1
 public function setAddressParam(AddressController $address)
 {
     $this->_id = $address->getId();
     $this->_personId = $address->getPersonId();
     $this->_addressType = $address->getAddressType();
     $this->_countryIso = $address->getCountryIso();
     $this->_state = $address->getState();
     $this->_street = $address->getStreet();
     $this->_city = $address->getCity();
     $this->_postalCode = $address->getPostalCode();
     $this->_note = $address->getNote();
 }