]> git.mxchange.org Git - pizzaservice-war.git/blobdiff - src/java/org/mxchange/pizzaapplication/beans/customer/CustomerWebBean.java
updated jar(s) + fixed method calls
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / customer / CustomerWebBean.java
index 559d9f189b5a93c9f73ce1c725d4e97af61d7afc..1774208dabd2a08b3d6eb563bc34e65e34613fc5 100644 (file)
@@ -151,14 +151,14 @@ public class CustomerWebBean implements CustomerWebController {
 
                // Create new contact
                Contact contact = new UserContact(this.getGender(), this.getFirstName(), this.getFamilyName());
-               contact.setStreet(this.getStreet());
-               contact.setHouseNumber(this.getHouseNumber());
-               contact.setZipCode(this.getZipCode());
-               contact.setCity(this.getCity());
-               contact.setCountry(this.getCountry());
-               contact.setPhoneNumber(this.getPhoneNumber());
-               contact.setFaxNumber(this.getFaxNumber());
-               contact.setCellphoneNumber(this.getCellphoneNumber());
+               contact.setContactStreet(this.getStreet());
+               contact.setContactHouseNumber(this.getHouseNumber());
+               contact.setContactZipCode(this.getZipCode());
+               contact.setContactCity(this.getCity());
+               contact.setContactCountry(this.getCountry());
+               contact.setContactPhoneNumber(this.getPhoneNumber());
+               contact.setContactFaxNumber(this.getFaxNumber());
+               contact.setContactCellphoneNumber(this.getCellphoneNumber());
 
                // Set contact in customer
                customer.setContact(contact);