public async Task Create(TodoId id, TodoTitle title) { Todo todo = Todo.CreateTodo(id, title); await Repository.Add(todo); }