async Task postHistoryAsync(String s) { SpellCheckHistory model = new SpellCheckHistory() { word = s }; await AzureManager.AzureManagerInstance.PostHistoryInformation(model); }
public async Task DeleteHistory(SpellCheckHistory historyResultModel) { await this.historyTable.DeleteAsync(historyResultModel); }
public async Task PostHistoryInformation(SpellCheckHistory historyResultModel) { await this.historyTable.InsertAsync(historyResultModel); }