Пример #1
0
 public TrelloRestGateway(
     ITrelloGateway trelloGateway, 
     ITrelloConfiguration trelloConfiguration)
 {
     _trelloGateway = trelloGateway;
     _trelloConfiguration = trelloConfiguration;
 }
Пример #2
0
 public BoardsController(
     ITrelloConfiguration trelloConfiguration, 
     ICardRepository cardRepository)
 {
     _trelloConfiguration = trelloConfiguration;
     _cardRepository = cardRepository;
 }
Пример #3
0
 public TrelloRestGateway(
     ITrelloGateway trelloGateway,
     ITrelloConfiguration trelloConfiguration)
 {
     _trelloGateway       = trelloGateway;
     _trelloConfiguration = trelloConfiguration;
 }
Пример #4
0
 public BoardsController(
     ITrelloConfiguration trelloConfiguration,
     ICardRepository cardRepository)
 {
     _trelloConfiguration = trelloConfiguration;
     _cardRepository      = cardRepository;
 }
Пример #5
0
 public CardRepository(
     ITrelloConfiguration trelloConfiguration,
     ITrelloGateway trelloGateway,
     IJsonParser jsonParser)
 {
     _trelloConfiguration = trelloConfiguration;
     _trelloGateway       = trelloGateway;
     _jsonParser          = jsonParser;
 }
Пример #6
0
 public CardRepository(
     ITrelloConfiguration trelloConfiguration, 
     ITrelloGateway trelloGateway, 
     IJsonParser jsonParser)
 {
     _trelloConfiguration = trelloConfiguration;
     _trelloGateway = trelloGateway;
     _jsonParser = jsonParser;
 }