Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbulens/e4bba11ca7e88b6c121631d4f970fc84 to your computer and use it in GitHub Desktop.
Save hbulens/e4bba11ca7e88b6c121631d4f970fc84 to your computer and use it in GitHub Desktop.
public ActionResult Index()
{
return View();
}
[OutputCache(Duration = 14400, VaryByParam = "none")]
public async Task<PartialViewResult> GenerateSlideDeck()
{
HomeViewModel viewModel = new HomeViewModel();
Task<IEnumerable<Slide>> slidesTask = this.Worker.GetSlides();
viewModel.Slides = await slidesTask;
return PartialView("_Slider", viewModel);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment