Beispiel #1
0
 /// <param name="historyEvent">Событие истории.</param>
 public void Add(HistoryEvent historyEvent)
 {
     Add(new List <HistoryEvent> {
         historyEvent
     });
 }
Beispiel #2
0
 /// <param name="historyEvent">Событие истории.</param>
 public History(HistoryEvent historyEvent)
 {
     _node = new HistoryNode(historyEvent);
 }
Beispiel #3
0
 /// <param name="historyEvent">Событие истории.</param>
 public HistoryNode(HistoryEvent historyEvent)
 {
     _events = new List <HistoryEvent> {
         historyEvent
     };
 }