Package com.myeis.services

Examples of com.myeis.services.Customer


      J2C_MyEIS_CustomerInfoProxy aProxy = new J2C_MyEIS_CustomerInfoProxy();

      // user code begin {proxy_method_calls}
      String custNum = "33333";
      Customer customer = aProxy.getCustomer(custNum);
      System.out.println("Customer number: " + custNum);
      System.out.println("Customer name:   " + customer.getFirstName() + " " + customer.getLastName());
     
      // user code end

    }
    catch (Exception e) {
View Full Code Here

TOP

Related Classes of com.myeis.services.Customer

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.