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/19628aa1ddea3b16f6d88778e71802fe to your computer and use it in GitHub Desktop.
Save hbulens/19628aa1ddea3b16f6d88778e71802fe to your computer and use it in GitHub Desktop.
[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