MaterializedNamedAggregate
data class MaterializedNamedAggregate(val contextName: String, val aggregateName: String) : NamedAggregate, Materialized
Represents a materialized named aggregate, providing concrete implementations of context and aggregate names.
This data class implements both NamedAggregate and Materialized, offering a fully resolved representation of an aggregate within a bounded context. It is used when the aggregate names are known at runtime and need to be stored or compared efficiently.