Example #1
0
        public void Handle(TimestampAdded tokenEvent)
        {
            var newEventInfo = new TestEventInformation
            {
                EventName  = "TimestampAdded",
                TokenEvent = tokenEvent
            };

            _Events.Add(newEventInfo);
        }
Example #2
0
        public void Handle(ProjectEnded tokenEvent)
        {
            var newEventInfo = new TestEventInformation
            {
                EventName  = "ProjectEnded",
                TokenEvent = tokenEvent
            };

            _Events.Add(newEventInfo);
        }