Example #1
0
 public void ApplyEvent(StoreEvent evt) {
     GetType()
         .GetMethod("Apply",
                    BindingFlags.NonPublic | BindingFlags.Instance,
                    null, new[] {evt.GetType()}, null)
         .Invoke(this, new object[] {evt});
 }