Examples of mDishType


Examples of com.softserve.academy.food.model.mDishType

  @RequestMapping( params={"action=editcategory"}, method = RequestMethod.GET )
  public ModelAndView showCategory()
  {
    dModel = new ModelAndView("admin");
    dModel.addObject( "listtype" , dService.getDishTypes() );
    dModel.addObject( "dishtype" , new mDishType() );
   
    return dModel;
  }
View Full Code Here

Examples of com.softserve.academy.food.model.mDishType

   
    ArrayList<eDishType> elist = daoType.ReadAll();
   
    for (eDishType type : elist)
    {
      list.add( new mDishType( type ) );
    }
    return list;
  }
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.