Ejemplo n.º 1
0
 public DeletionProcessedArgs(
     DateTimeOffset timeStamp,
     IEnumerable <ILogMessage> logMessages,
     Exception exception,
     EntityIdentifier entityId,
     EntityDeletionOutcome outcome)
     : base(timeStamp, logMessages, exception)
 {
     this.entityId = entityId;
     this.outcome  = outcome;
 }
Ejemplo n.º 2
0
 private void RaiseDeletionProcessed(
     EntityIdentifier entityId,
     EntityDeletionOutcome outcome,
     Exception exception)
 {
     this.eventDispatcher.DeletionProcessed(
         new DeletionProcessedArgs(
             this.operationExecutive.CurrentOperation.TimeStamp,
             this.operationExecutive.CurrentOperation.LogMessages,
             exception,
             entityId,
             outcome));
 }