コード例 #1
0
 public BrowseActionHandler(
     IBoardsClient boardsClient,
     IChooseBoardActionHandler chooseBoardActionHandler,
     IChooseListActionHandler chooseListActionHandler)
 {
     this.boardsClient             = boardsClient;
     this.chooseBoardActionHandler = chooseBoardActionHandler;
     this.chooseListActionHandler  = chooseListActionHandler;
 }
コード例 #2
0
 public CreateActionHandler(
     IChooseBoardActionHandler chooseBoardActionHandler,
     IBoardsClient boardsClient,
     IListsClient listsClient,
     IConsole console)
 {
     this.chooseBoardActionHandler = chooseBoardActionHandler;
     this.boardsClient             = boardsClient;
     this.listsClient = listsClient;
     this.console     = console;
 }
コード例 #3
0
 public ImportActionHandler(
     IBoardsClient boardsClient,
     IBoardsService boardsService,
     ITrelloRepositoryFactory boardsRepositoryFactory,
     IConsole console,
     TrelloConsoleConfiguration configuration)
 {
     this.boardsClient            = boardsClient;
     this.boardsService           = boardsService;
     this.boardsRepositoryFactory = boardsRepositoryFactory;
     this.console       = console;
     this.configuration = configuration;
 }
コード例 #4
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;
 }
コード例 #5
0
 public BoardsService(IBoardsClient boardsClient)
 {
     this.boardsClient = boardsClient;
 }