Package com.itedge.solutionmanager.domain.impl

Examples of com.itedge.solutionmanager.domain.impl.Address


        // create new customer contact person from task data
        ContactPerson customerContact = new ContactPerson();
        customerContact.setFirstName(taskData.getContactPersonFirstName());
          customerContact.setSecondName(taskData.getContactPersonSecondName());
          customerContact.setTitle(taskData.getContactPersonTitle());
          Address customerAddress = new Address();
          customerAddress.setTelNumber(taskData.getContactPersonPhone());
          customerContact.setAddress(customerAddress);
          customerContact.setNotes(taskData.getContactPersonNotes());
          // create new customer from task data
          Customer newCustomer = new Customer();
          newCustomer.setStatus(CustomerStatus.ACTIVE);
View Full Code Here


      addContactPersonTaskDataService.merge(taskData);
      ContactPerson customerContact = new ContactPerson();
        customerContact.setFirstName(taskData.getContactPersonFirstName());
      customerContact.setSecondName(taskData.getContactPersonSecondName());
      customerContact.setTitle(taskData.getContactPersonTitle());
      Address customerAddress = new Address();
      customerAddress.setTelNumber(taskData.getContactPersonPhone());
      customerContact.setAddress(customerAddress);
      customerContact.setNotes(taskData.getContactPersonNotes())
      contactPersonService.persist(customerContact);  
      linkedObject.addContactPerson(customerContact);
      customerService.merge(linkedObject);
View Full Code Here

TOP

Related Classes of com.itedge.solutionmanager.domain.impl.Address

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.