private async void UpdateCheckedTodoItem(TodoItem item)
 {
     await todoTable.UpdateAsync(item);
     items.Remove(item);
 }
 private async void InsertTodoItem(TodoItem todoItem)
 {
     await Service.InsertItemAsync(todoItem);
     items.Add(todoItem);
 }