Example #1
0
        private async Task RemoveNote(NoteViewItem noteViewItem)
        {
            IsBusy = true;
            Notes.Remove(noteViewItem);
            await _notesService.Delete(noteViewItem.NoteItem);

            IsBusy = false;
        }
Example #2
0
 internal void NoteSelected(NoteViewItem selectedNote)
 {
     _navigationService.NavigateTo(Locator.ViewNames.EditNotePage, selectedNote.NoteItem.Id);
 }