// GET: / Spotlight / Full Archives public ActionResult Archives() { ViewBag.DataArchives = Spotlight.GetSpotlights(); ViewBag.currSpot = Spotlight.CurrSpotlight(currSpotlight); return(View()); }
// // GET: / Spotlight / Partial Archives public ActionResult Index(int slideOrder) { ViewBag.Archives = Spotlight.GetSpotlights(); ViewBag.CurrSpot = Spotlight.CurrSpotlight(slideOrder); return(View()); }