Exemple #1
0
 public static string GetRole()
 {
     return(Conversion.TryCastString(SessionHelper.GetSessionKey("Role")));
 }
Exemple #2
0
 public static DateTime GetRegistrationDate()
 {
     return(Conversion.TryCastDate(SessionHelper.GetSessionKey("RegistrationDate")));
 }
Exemple #3
0
 public static string GetRegistrationNumber()
 {
     return(Conversion.TryCastString(SessionHelper.GetSessionKey("RegistrationNumber")));
 }
Exemple #4
0
 public static string GetBaseCurrency()
 {
     return(Conversion.TryCastString(SessionHelper.GetSessionKey("CurrencyCode")));
 }
Exemple #5
0
 public static string GetOfficeName()
 {
     return(Conversion.TryCastString(SessionHelper.GetSessionKey("OfficeName")));
 }
Exemple #6
0
 public static string GetNickname()
 {
     return(Conversion.TryCastString(SessionHelper.GetSessionKey("NickName")));
 }
Exemple #7
0
 public static int GetOfficeId()
 {
     return(Conversion.TryCastInteger(SessionHelper.GetSessionKey("OfficeId")));
 }
Exemple #8
0
 public static string GetFax()
 {
     return(Conversion.TryCastString(SessionHelper.GetSessionKey("Fax")));
 }
Exemple #9
0
 public static long GetLogOnId()
 {
     return(Conversion.TryCastLong(SessionHelper.GetSessionKey("LogOnId")));
 }
Exemple #10
0
 public static string GetEmail()
 {
     return(Conversion.TryCastString(SessionHelper.GetSessionKey("Email")));
 }
Exemple #11
0
 public static string GetCountry()
 {
     return(Conversion.TryCastString(SessionHelper.GetSessionKey("Country")));
 }
Exemple #12
0
 public static bool IsSystem()
 {
     return(Conversion.TryCastBoolean(SessionHelper.GetSessionKey("IsSystem")));
 }
Exemple #13
0
 public static string GetZipCode()
 {
     return(Conversion.TryCastString(SessionHelper.GetSessionKey("ZipCode")));
 }
Exemple #14
0
 public static DateTime GetSignInTimestamp()
 {
     return(Conversion.TryCastDate(SessionHelper.GetSessionKey("SignInTimestamp")));
 }