public void Handle(CreateItem cmd) { var todoList = _aggregateRootRepoForTodoList.Get(cmd.List.Value); todoList.Add(cmd.Text); }