/Source/Bifrost.Specs/Events/for_EventSubscriptionManager/SomeEventSubscriber.cs
# · C# · 13 lines · 12 code · 1 blank · 0 comment · 0 complexity · 0a467198c77b7f623a30d6ec55620318 MD5 · raw file
- using Bifrost.Events;
- namespace Bifrost.Specs.Events.for_EventSubscriptionManager
- {
- public class SomeEventSubscriber : IEventSubscriber
- {
- public bool ProcessCalled = false;
- public void Process(SomeEvent @event)
- {
- ProcessCalled = true;
- }
- }
- }