Beispiel #1
0
        public static long GetId()
        {
            var  value    = CacheStorage.GetValue("currentUserId");
            long response = Convert.ToInt64(value);

            return(response);
        }
Beispiel #2
0
        public static string GetName()
        {
            var response = CacheStorage.GetValue("currentUserName");

            return(response.ToString());
        }