Audience asks if service objects or command handlers can call each other and whether dependency injection applies. Krzywda: service objects never call each other; a command is handled by exactly one domain and its handler never invokes another command directly. Coordination happens via events published on pub/sub — read models and processes react. Dependency injection is a good pattern but is rarely needed because the strong decoupling removes most dependencies.