示例#1
0
        // GET: Contacts
        public ActionResult Index()
        {
            List <Contact> model = proxy.List();

            ViewBag.Message = "Set from Index action - Count:" + model.Count;
            return(View(model));
        }