Package com.ateam.webstore.service.impl

Examples of com.ateam.webstore.service.impl.MessageService


        Customer person = v.getCustomer();
       
        ServiceCase scase = new ServiceCase(person);
        service.store(scase);
       
        MessageService ms = new MessageService();
       
        Message mess = new Message(scase, person.getPerson(), false, 0, message);
        ms.store(mess);
        fs.setResultMessage("Feedback sent.");
       
        fs.setResultView(getMessageView("Feedback Sent.", "Send Feedback"));
       
      } catch (Exception e) {
View Full Code Here

TOP

Related Classes of com.ateam.webstore.service.impl.MessageService

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.