コード例 #1
0
        public ActionResult AddDetail(string detail)
        {
            var model = PersonRepo.CurrentPerson();

            model.Details.Add(detail);

            return(View("Index", model));
        }
コード例 #2
0
        // GET: Person
        public ActionResult Index()
        {
            //return "Hello from controller!";

            var model = PersonRepo.CurrentPerson();

            return(View("Index", model));
        }