예제 #1
0
 private void ApplyChange(Event @event, bool isNew)
 {
     this.AsDynamic().Apply(@event);
     if (isNew)
     {
         this._changes.Add(@event);
     }
 }
예제 #2
0
 protected void ApplyChange(Event @event)
 {
     this.ApplyChange(@event, true);
 }
예제 #3
0
 public EventDescriptor(Guid id, Event eventData, int version)
 {
     this.EventData = eventData;
     this.Version = version;
     this.Id = id;
 }