public static Dictionary <string, T> GetDictionaryValue <T>(string key, Common.User u = null, DateTime?targetDate = null) { string strVal = getValue <string>(key, u, targetDate); return(strVal == null ? null : JsonAccess.Deserialize <Dictionary <string, T> >(strVal)); }
public static List <string> GetStringListValue(string key, Common.User u = null, DateTime?targetDate = null) { string strVal = getValue <string>(key, u, targetDate); return(strVal == null ? null : JsonAccess.Deserialize <List <string> >(strVal)); }