Example #1
0
        public ActionResult Index(Guid id)
        {
            var model = new WhatToDoNextData {
                Id = id
            };

            return(View(model));
        }
 public ActionResult Index(Guid id)
 {
     var model = new WhatToDoNextData { Id = id };
     return View(model);
 }