public ActionResult List(string searchName, string searchCode, string searchDescription, DateTime?searchDate, string searchCreatedProduct) { List <VMRole> List = new List <VMRole>(); List = RoleRepo.GetListAll(searchName, searchCode, searchDescription, searchDate, searchCreatedProduct); ViewBag.DataKosong = RoleRepo.DataKosong; return(PartialView("List", List)); }