/Source/Bifrost.Fakes/Events/AnotherSimpleEvent.cs
# · C# · 14 lines · 12 code · 2 blank · 0 comment · 0 complexity · 4b0b35248d686d4ffdfbd71cb6ee1376 MD5 · raw file
- using System;
- using Bifrost.Events;
-
- namespace Bifrost.Fakes.Events
- {
- public class AnotherSimpleEvent : Event
- {
- public AnotherSimpleEvent(Guid eventSourceId, Guid id) : base(eventSourceId,id)
- {}
-
- public AnotherSimpleEvent(Guid eventSourceId) : this(eventSourceId, Guid.NewGuid())
- {}
- }
- }