Exemplo n.º 1
0
        public static async Task <string> GetRisk()
        {
            ServerResponse response = await IssueRequest(Request.GET_RISK, AppConfiguration.LOCATION_SERVER_URL.Uri, true);

            return(response?.level);
        }
Exemplo n.º 2
0
        public static async Task <string> RegisterAndGetId()
        {
            ServerResponse response = await IssueRequest(Request.REGISTER, AppConfiguration.REGISTRATION_SERVER_URL.Uri);

            return(response?.id);
        }