Esempio n. 1
0
 public static T Get <T>(this ITempDataDictionary tempData, string key) where T : class
 {
     return(ITempDataDictionaryHelper.Get <T>(tempData, key));
 }
Esempio n. 2
0
 public static void Set <T>(this ITempDataDictionary tempData, string key, T value) where T : class
 {
     ITempDataDictionaryHelper.Set <T>(tempData, key, value);
 }