public SyncBoardGamesActionHandler(IBoardGameEventService boardGameEventService, ITrelloServiceFactory trelloServiceFactory,
                                    ICardsClient cardsClient)
 {
     this.boardGameEventService = boardGameEventService;
     this.trelloServiceFactory  = trelloServiceFactory;
     this.cardsClient           = cardsClient;
 }
 public LogActionHandler(
     ITrelloServiceFactory trelloServiceFactory,
     ICardsClient cardsClient,
     IConsole console)
 {
     this.trelloServiceFactory = trelloServiceFactory;
     this.cardsClient          = cardsClient;
     this.console = console;
 }
Exemplo n.º 3
0
 public ActiveGoalsActionHandler(
     IBoardsClient boardsClient,
     ITrelloServiceFactory trelloServiceFactory,
     IListsClient listsClient,
     ICreationDateRetriever creationDateRetriever,
     ICardFilterFactory cardFilterFactory,
     IConsole console)
 {
     this.boardsClient          = boardsClient;
     this.trelloServiceFactory  = trelloServiceFactory;
     this.listsClient           = listsClient;
     this.creationDateRetriever = creationDateRetriever;
     this.cardFilterFactory     = cardFilterFactory;
     this.console = console;
 }