protected function setAddressesAndPhones()
 {
     $addressModel = new AddressTableModel($this->id);
     $addressModel->setData();
     $this->addresses = $addressModel;
     $phoneModel = new PhoneTableModel($this->id);
     $phoneModel->setData();
     $this->phones = $phoneModel;
 }