public TrelloRestGateway( ITrelloGateway trelloGateway, ITrelloConfiguration trelloConfiguration) { _trelloGateway = trelloGateway; _trelloConfiguration = trelloConfiguration; }
public BoardsController( ITrelloConfiguration trelloConfiguration, ICardRepository cardRepository) { _trelloConfiguration = trelloConfiguration; _cardRepository = cardRepository; }
public CardRepository( ITrelloConfiguration trelloConfiguration, ITrelloGateway trelloGateway, IJsonParser jsonParser) { _trelloConfiguration = trelloConfiguration; _trelloGateway = trelloGateway; _jsonParser = jsonParser; }