async Task PostNoteAsync() { loading.IsRunning = true; loading.IsVisible = true; var model = new nbha675() { Text = TagLabel.Text.Substring(11).Trim() }; await AzureManager.AzureManagerInstance.PostNote(model); loading.IsRunning = false; loading.IsVisible = false; Save.IsVisible = false; }
public async Task PostNote(nbha675 noteModel) => await _notesTable.InsertAsync(noteModel);