/Source/Bifrost.Fakes/Events/AnotherSimpleEvent.cs

# · C# · 14 lines · 12 code · 2 blank · 0 comment · 0 complexity · 4b0b35248d686d4ffdfbd71cb6ee1376 MD5 · raw file

  1. using System;
  2. using Bifrost.Events;
  3. namespace Bifrost.Fakes.Events
  4. {
  5. public class AnotherSimpleEvent : Event
  6. {
  7. public AnotherSimpleEvent(Guid eventSourceId, Guid id) : base(eventSourceId,id)
  8. {}
  9. public AnotherSimpleEvent(Guid eventSourceId) : this(eventSourceId, Guid.NewGuid())
  10. {}
  11. }
  12. }