Examples of eHistoryOrders


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
Copyright © 2018 www.massapi.com. 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.