public void Delete(int id)
        {
            var userId = GetAuthorizedUserId();

            _toDoItemService.DeleteItem(id, userId);
        }