Beispiel #1
0
 public void Apply(TestEvent1 domainEvent)
 {
     Console.WriteLine("Apply TestEvent1 {0} - {1}", domainEvent.Version, domainEvent.Name);
     this.InternalState.Name = domainEvent.Name;
 }
Beispiel #2
0
 public void Apply(TestEvent1 domainEvent)
 {
     Console.WriteLine("Apply TestEvent1 {0}", domainEvent.Version);
     ////this.name = domainEvent.Name;
 }
Beispiel #3
0
 public void HandleMe(TestEvent1 @event)
 {
     Console.WriteLine("Builder TestEvent1 {0}", @event.Identity);
 }