コード例 #1
0
ファイル: DeliController.cs プロジェクト: talajiam/Hackathon
        public ActionResult Index(List<Entities.DellyOrder> orders)
        {
            ;
            DeliAPIController api = new DeliAPIController();
            api.Put(orders.AsEnumerable());

               orders= api.Get().ToList();

            //FAAS.App_Start.Helper.UpdateDellyOrders(orders);
               // List<Entities.DellyOrder> order = FAAS.App_Start.Helper.GetDellyOrders().ToList();
            return View(orders);
        }