Exemplo n.º 1
0
 public ActionResult TopThree()
 {
     TempData["restaurants"] = applicationServices.GetTopThreeRestaurants();
     return(RedirectToAction("Index"));
 }
        public void PrintTopThree()
        {
            List <Restaurant> restaurants = _pzServices.GetTopThreeRestaurants();

            Print(restaurants);
        }