Exemplo n.º 1
0
        public ActionResult AdvanceSearch(int? page, String actor, String directer, String country, String type)
        {
            ViewBag.actor = actor;
            ViewBag.directer = directer;
            ViewBag.country = country;
            ViewBag.type = type;

            if (TempData["strSort"] == null)
                TempData["strSort"] = "ID";
            if (TempData["sortDirection"] == null)
                TempData["sortDirection"] = "true";



            FilmService phimService = new FilmService();
 
     

            List<PhimViewModels> searchResult = phimService.searchFilm4(actor, directer, country, type);
        

            return View(searchResult);


        }