/* * @parameters * DateTime timeStamp: when the data was gathered * int *Score: scores of region * */ public async void update() { await this.authenticate(); UNFDataEntry result = await this.getJsonData(); this.updateData(result); }
private string updateData(UNFDataEntry dataEntry) { return(dataEntry.writeDataEntry(cachedData)); }