public async Task CloseTodoItem(int todoItemId)
        {
            await _todoItemService.CloseTodoItem(todoItemId);

            await UpdateTodoItems();
        }