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