Ejemplo n.º 1
0
 public static void Write(this ITimeline timeline, params Event[] events)
 {
     timeline.Write(TimelinePosition.None, events);
 }
Ejemplo n.º 2
0
 public static void Write(this ITimeline timeline, IEnumerable <Event> events)
 {
     timeline.Write(TimelinePosition.None, events);
 }
Ejemplo n.º 3
0
 public static void Write(this ITimeline timeline, Event e)
 {
     timeline.Write(TimelinePosition.None, e);
 }
Ejemplo n.º 4
0
 public static void Write(this ITimeline timeline, TimelinePosition cause, params Event[] events)
 {
     timeline.Write(cause, events.ToMany());
 }
Ejemplo n.º 5
0
 public static void Write(this ITimeline timeline, TimelinePosition cause, IEnumerable <Event> events)
 {
     timeline.Write(cause, events.ToMany());
 }
Ejemplo n.º 6
0
 public static void Write(this ITimeline timeline, TimelinePosition cause, Event e)
 {
     timeline.Write(cause, Many.Of(e));
 }