async Task postResultsAsync(string prediction, bool result)
        {
            NotMountainModel model = new NotMountainModel()
            {
                Result     = result,
                Prediction = prediction
            };

            await AzureManager.AzureManagerInstance.PostMountainInformation(model);
        }
Beispiel #2
0
 public async Task DeleteMountainInformation(NotMountainModel notMountainModel)
 {
     await this.NotMountainTable.DeleteAsync(notMountainModel);
 }
Beispiel #3
0
 public async Task PostMountainInformation(NotMountainModel notMountainModel)
 {
     await this.NotMountainTable.InsertAsync(notMountainModel);
 }