Created
June 5, 2016 19:08
-
-
Save casper-rasmussen/38ac307f2334116446c7f58006e1e2b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface ITempDataProvider | |
{ | |
IDictionary<string, object> LoadTempData(ControllerContext controllerContext); | |
void SaveTempData(ControllerContext controllerContext, IDictionary<string, object> values); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment