Beispiel #1
0
 public LeafToRootActor(IAggregateRootActor aggregateRootActor)
 {
     _aggregateRootActor = aggregateRootActor;
 }
Beispiel #2
0
 public AggregateActor(IAggregateRootActor aggregateRootActor)
 {
     _aggregateRootActor = aggregateRootActor;
     _rootToLeafActor    = new RootToLeafActor(aggregateRootActor);
 }
 public LeafToRootActor(IAggregateRootActor aggregateRootActor)
 {
     _aggregateRootActor = aggregateRootActor;
 }
 public RootToLeafActor(IAggregateRootActor aggregateRootActor)
 {
     _aggregateRootActor = aggregateRootActor;
 }
Beispiel #5
0
 public RootToLeafActor(IAggregateRootActor aggregateRootActor)
 {
     _aggregateRootActor = aggregateRootActor;
 }
 public static IReadOnlyCollection <Type> GetEntityTypes(this IAggregateRootActor aggregateRootActor)
 {
     return(aggregateRootActor.GetEntityActors().Select(x => x.EntityType).ToArray());
 }