Ejemplo n.º 1
0
 public TrelloRestGateway(
     ITrelloGateway trelloGateway, 
     ITrelloConfiguration trelloConfiguration)
 {
     _trelloGateway = trelloGateway;
     _trelloConfiguration = trelloConfiguration;
 }
Ejemplo n.º 2
0
 public BoardsController(
     ITrelloConfiguration trelloConfiguration, 
     ICardRepository cardRepository)
 {
     _trelloConfiguration = trelloConfiguration;
     _cardRepository = cardRepository;
 }
Ejemplo n.º 3
0
 public TrelloRestGateway(
     ITrelloGateway trelloGateway,
     ITrelloConfiguration trelloConfiguration)
 {
     _trelloGateway       = trelloGateway;
     _trelloConfiguration = trelloConfiguration;
 }
Ejemplo n.º 4
0
 public BoardsController(
     ITrelloConfiguration trelloConfiguration,
     ICardRepository cardRepository)
 {
     _trelloConfiguration = trelloConfiguration;
     _cardRepository      = cardRepository;
 }
Ejemplo n.º 5
0
 public CardRepository(
     ITrelloConfiguration trelloConfiguration,
     ITrelloGateway trelloGateway,
     IJsonParser jsonParser)
 {
     _trelloConfiguration = trelloConfiguration;
     _trelloGateway       = trelloGateway;
     _jsonParser          = jsonParser;
 }
Ejemplo n.º 6
0
 public CardRepository(
     ITrelloConfiguration trelloConfiguration, 
     ITrelloGateway trelloGateway, 
     IJsonParser jsonParser)
 {
     _trelloConfiguration = trelloConfiguration;
     _trelloGateway = trelloGateway;
     _jsonParser = jsonParser;
 }