Ejemplo n.º 1
0
 public static string GetUserLastName()
 {
     return(StorageHelper.GetSetting <string>(Common.Constants.UserLastName));
 }
Ejemplo n.º 2
0
 public static string GetUserEmail()
 {
     return(StorageHelper.GetSetting <string>(Common.Constants.UserEmail));
 }
Ejemplo n.º 3
0
        public static string GetCurrentUserId()
        {
            var userId = StorageHelper.GetSetting <string>(Common.Constants.UserId, null);

            return(userId.Replace(Common.Constants.UserIdMsPrefix, String.Empty));
        }