public TrelloRestGateway(
     ITrelloGateway trelloGateway, 
     ITrelloConfiguration trelloConfiguration)
 {
     _trelloGateway = trelloGateway;
     _trelloConfiguration = trelloConfiguration;
 }
 public TrelloRestGateway(
     ITrelloGateway trelloGateway,
     ITrelloConfiguration trelloConfiguration)
 {
     _trelloGateway       = trelloGateway;
     _trelloConfiguration = trelloConfiguration;
 }
示例#3
0
 public CardRepository(
     ITrelloConfiguration trelloConfiguration,
     ITrelloGateway trelloGateway,
     IJsonParser jsonParser)
 {
     _trelloConfiguration = trelloConfiguration;
     _trelloGateway       = trelloGateway;
     _jsonParser          = jsonParser;
 }
 public CardRepository(
     ITrelloConfiguration trelloConfiguration, 
     ITrelloGateway trelloGateway, 
     IJsonParser jsonParser)
 {
     _trelloConfiguration = trelloConfiguration;
     _trelloGateway = trelloGateway;
     _jsonParser = jsonParser;
 }