예제 #1
0
        async Task postHistoryAsync(String s)
        {
            SpellCheckHistory model = new SpellCheckHistory()
            {
                word = s
            };

            await AzureManager.AzureManagerInstance.PostHistoryInformation(model);
        }
예제 #2
0
 public async Task DeleteHistory(SpellCheckHistory historyResultModel)
 {
     await this.historyTable.DeleteAsync(historyResultModel);
 }
예제 #3
0
 public async Task PostHistoryInformation(SpellCheckHistory historyResultModel)
 {
     await this.historyTable.InsertAsync(historyResultModel);
 }