public ActionResult CakeOrDeath(ListsOfThings model) { Debug.Assert(model != null); Debug.Assert(model.NewThings != null); Debug.Assert(model.OldThings != null); return(View("Index", model)); }
public ActionResult Index() { return(View(ListsOfThings.GetExampleLists())); }