diff --git a/EventSourcing/AccountAggregate.cs b/EventSourcing/AccountAggregate.cs index fbe7333..3156d4a 100644 --- a/EventSourcing/AccountAggregate.cs +++ b/EventSourcing/AccountAggregate.cs @@ -120,10 +120,10 @@ private void Apply(CurrencyChangeEvent currencyChange) private void Apply(ClosureEvent closure) { - if (AccountLog == null) - AccountLog = new List(); - var logMessage = new LogMessage("CLOSURE", closure.Reason.ToString(), closure.Timestamp); - AccountLog.Add(logMessage); + // if (AccountLog == null) + // AccountLog = new List(); + // var logMessage = new LogMessage("CLOSURE", closure.Reason.ToString(), closure.Timestamp); + // AccountLog.Add(logMessage); Status = AccountStatus.Closed; } }