Ejemplo n.º 1
0
        private void ApplyChange(Event @event, bool isNew)
        {
            try
            {
                this.AsDynamic().Apply(@event);
                if (isNew) _changes.Add(@event);
            }
            catch (Exception ex)
            {

            }
        }
Ejemplo n.º 2
0
 protected void ApplyChange(Event @event)
 {
     ApplyChange(@event, true);
 }