예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TimerManager"/> class.
 /// </summary>
 /// <param name="store">The timer storage component.</param>
 public TimerManager(ITimerStore store)
 {
     this.store = store;
 }
예제 #2
0
 public StartTimerCommand(ITimerStore timerStore, IEventBus eventBus)
 {
     this.timerStore = timerStore;
     this.eventBus   = eventBus;
 }
예제 #3
0
 public ListTimersCommand(ITimerStore timerStore, IEventBus eventBus)
 {
     this.timerStore = timerStore;
     this.eventBus   = eventBus;
 }