private void ApplyChange(Event @event, bool isNew) { try { this.AsDynamic().Apply(@event); if (isNew) _changes.Add(@event); } catch (Exception ex) { } }
protected void ApplyChange(Event @event) { ApplyChange(@event, true); }