Ejemplo n.º 1
0
        async Task postHistoryAsync(String s)
        {
            SpellCheckHistory model = new SpellCheckHistory()
            {
                word = s
            };

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