Package com.ateam.webstore.service.impl

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


   *
   * @param req
   */
  public OrderHandler(HttpServletRequest req) {
    super(req);
    service = new OrdersService();
  }
View Full Code Here


//    Collection<EmployeeRoles> roles = employee.getRoles();
//    for (EmployeeRoles role : roles) {
//      System.out.println(role.getRole().getDescription());
//    }
   
    Collection<Orders> orders = new OrdersService().getAll();
    for (Orders order : orders) {
      Collection<ItemsOrdered> items = order.getItemsOrdered();
      for (ItemsOrdered item : items) {
        System.out.println(item.getItemQty() + " - " + item.getUnitPrice());
      }
View Full Code Here

TOP

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

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.