public async Task RemoveFromTodoList(TodoItem item)
 {
     TodoItems.Remove(item);
     await TodoItemService.DeleteItem(ListId, item.Id);
 }