示例#1
0
        // GET: Dict
        public ActionResult Index()
        {
            List <Record> dictionary = recordRepository.GetRecords();

            ViewBag.Dictionary = dictionary;

            return(View());
        }