예제 #1
0
        async Task postResultsAsync(string prediction, bool result)
        {
            NotMountainModel model = new NotMountainModel()
            {
                Result     = result,
                Prediction = prediction
            };

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