public void Handle(IViewContext context, NumberEvent domainEvent)
            {
                var aggregateRootId = domainEvent.GetAggregateRootId();
                var instance        = context.Load <AggregateRootWithLogic>(aggregateRootId);

                Counter = instance.Counter;
            }