public async Task <ActionResult <TodoItem> > GetTodoItemAsync(long id) { var todoItem = await _todoItemRepository.GetByIdAsync(id); if (todoItem == null) { return(NotFound()); } return(todoItem); }