public string GetAuthToken()
        {
            string response;

            try
            {
                GetoAuth getoAuth = new GetoAuth();
                response = getoAuth.GetoAuthToken();
            }
            catch (Exception Ex)
            {
                throw Ex;
            }
            return(response);
        }