예제 #1
0
 public SearchActionHandler(
     IConsole console,
     IJsonFileRepository <Event> jsonFileRepository,
     IEventFilterFactory eventFilterFactory,
     IEqualityComparer <Event> eventComparer,
     IShowEventsStepHandler showEventsStepHandler)
 {
     this.console               = console;
     this.jsonFileRepository    = jsonFileRepository;
     this.eventFilterFactory    = eventFilterFactory;
     this.eventComparer         = eventComparer;
     this.showEventsStepHandler = showEventsStepHandler;
 }
예제 #2
0
 public ChooseEventStepHandler(IConsole console, IShowEventsStepHandler showEventsStepHandler)
 {
     this.console = console;
     this.showEventsStepHandler = showEventsStepHandler;
 }