Exemplo n.º 1
0
        public ActionResult GetOrdersAjax()
        {
            var repo = new IceCreamRepository();
            IEnumerable <IceCream> orders = repo.GetOrders();

            return(Json(orders, JsonRequestBehavior.AllowGet));
        }
Exemplo n.º 2
0
        public ActionResult GetOrders()
        {
            var repo = new IceCreamRepository();
            IEnumerable <IceCream> orders = repo.GetOrders();

            return(View(orders));
        }