public async Task <bool> RefuseCharge() { ApiService _apiService = new ApiService(); IdInfo.status = Constants.Refused; bool isAuth = await _apiService.AuthChange(IdInfo); return(isAuth); }
public async Task <bool> AuthCharge() { ApiService _apiService = new ApiService(); IdInfo.status = Constants.Authorized; bool isAuth = await _apiService.AuthChange(IdInfo); // ACTUALIZA return(isAuth); }