コード例 #1
0
 public static function transformToArray(CustomerObject $customerObject)
 {
     $customer = ["Nombre" => $customerObject->getName(), "Direcc" => $customerObject->getAddress(), "Telefo" => $customerObject->getPhone(), "Pais" => $customerObject->getCountry(), "Departamento" => $customerObject->getDepart(), "Ciudad" => $customerObject->getCity(), "Correo" => $customerObject->getEmail(), "IdClieRapiOcho" => $customerObject->getIdDocument(), "TipoDocu" => $customerObject->getTypeDocument()];
     return $customer;
 }