public EventEntryStoredElement(SingleOriginEvent ee, EventEntryStoredElement next, EventEntryStoredElement previous)
 {
     this.Navigation = new EventEntryNavigator(next, previous);
     Entry           = ee;
 }
Ejemplo n.º 2
0
 public EventEntryNavigator(EventEntryStoredElement next, EventEntryStoredElement previous)
 {
     this.Next     = next;
     this.Previous = previous;
 }