Package StockTradeServices.interfaces

Examples of StockTradeServices.interfaces.ICustomerMgr


    ServiceObjectRegistry.setConfigFileName("net/helipilot50/stocktrade/server/stock-trade-client-config.xml");
  }

  @Override
  public Customer getCustomer(String name) {
    ICustomerMgr customerSO = CustomerSO_proxy.getInstance();
    StockTradeBusinessClasses.Customer customer = customerSO.getCustomer(new TextData(name));
    return toCustomerDTO(customer);
  }
View Full Code Here

TOP

Related Classes of StockTradeServices.interfaces.ICustomerMgr

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.