Package com.softserve.academy.food.entity

Examples of com.softserve.academy.food.entity.eHistoryOrders


  {
    if ( basked!=null )
    {
      if ( login!=null )
      {
        eHistoryOrders histroy = new eHistoryOrders();
        ArrayList<eOrder> orders = new ArrayList<eOrder>();
       
        histroy.setUser( daoUser.getUser(login) );
        histroy.setData( new java.util.Date() );
        histroy = daoHistoryOrder.Create( histroy );
       
        for ( eDish dish : daoDish.getDishesByIds(basked) )
        {
          eOrder order = new eOrder();
View Full Code Here

TOP

Related Classes of com.softserve.academy.food.entity.eHistoryOrders

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.