Example #1
0
        public ActionResult AddToOrderPartial(int itemId = 0)
        {
            OrderBusinessLogic bl = new OrderBusinessLogic();
            var view = bl.GetItemFromOrder(itemId);

            return(PartialView("_AddToOrder", view));
        }