Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
[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