Beispiel #1
0
        //
        // GET: /Home/

        public ActionResult Index()
        {
            FilmService filmService = new FilmService();
            List <Film> hightLight  = filmService.FindByTop(4);

            ViewBag.hightLight = hightLight;
            return(View());
        }