コード例 #1
0
        public async Task <bool> RefuseCharge()
        {
            ApiService _apiService = new ApiService();

            IdInfo.status = Constants.Refused;
            bool isAuth = await _apiService.AuthChange(IdInfo);

            return(isAuth);
        }
コード例 #2
0
        public async Task <bool> AuthCharge()
        {
            ApiService _apiService = new ApiService();

            IdInfo.status = Constants.Authorized;
            bool isAuth = await _apiService.AuthChange(IdInfo);

            // ACTUALIZA

            return(isAuth);
        }