public static void GetUserAccessToken(string code)
        {
            var token = WebDataReader.GetUserAccessToken(code);

            if (token != null)
            {
                EoiDataInterface.AuthenticateUser(token);
            }
        }
 internal static bool IsVersionValid(string version)
 {
     return(WebDataReader.GetVersionValidation(version));
 }
 public static RawAccessTokenResponse RefreshAccessToken(string refreshToken)
 {
     return(WebDataReader.RefreshAccessToken(refreshToken));
 }
 public static string GetAuthenticationCode(Guid guid)
 {
     return(WebDataReader.GetAuthenticationCode(guid));
 }