Package com.supinfo.analytics.soap

Examples of com.supinfo.analytics.soap.SalesExport


    private ChannelDAO channelDAO;
   
    public void processSoapList(String agency)
    {
        SalesExportService service = new SalesExportService();
        SalesExport export = service.getSalesExportPort();
        List<com.supinfo.analytics.soap.Sale> soapSales = export.getFranceSales();
       
        for(com.supinfo.analytics.soap.Sale s : soapSales)
        {
            Channel c = new Channel();
            c.setDescription(s.getChannel().getChannelDesc());
View Full Code Here

TOP

Related Classes of com.supinfo.analytics.soap.SalesExport

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.