Exemplo n.º 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;
 }
Exemplo n.º 2
0
 public ChooseEventStepHandler(IConsole console, IShowEventsStepHandler showEventsStepHandler)
 {
     this.console = console;
     this.showEventsStepHandler = showEventsStepHandler;
 }