public Trello(string key) { _restClient = new TrelloRestClient(key); Members = new Members(_restClient); Boards = new Boards(_restClient); Lists = new Lists(_restClient); Cards = new Cards(_restClient); Checklists = new Checklists(_restClient); Organizations = new Organizations(_restClient); }
internal AsyncTrello(TrelloRestClient restClient) { _restClient = restClient; Members = new AsyncMembers(_restClient); Boards = new AsyncBoards(_restClient); Lists = new AsyncLists(_restClient); Cards = new AsyncCards(_restClient); Checklists = new AsyncChecklists(_restClient); Organizations = new AsyncOrganizations(_restClient); Notifications = new AsyncNotifications(_restClient); Tokens = new AsyncTokens(_restClient); }
public Trello(string key) { _restClient = new TrelloRestClient(key); Members = new Members(_restClient); Boards = new Boards(_restClient); Lists = new Lists(_restClient); Cards = new Cards(_restClient); Checklists = new Checklists(_restClient); Organizations = new Organizations(_restClient); Notifications = new Notifications(_restClient); Tokens = new Tokens(_restClient); Async = new AsyncTrello(_restClient); }
public Trello(string key) { _restClient = new TrelloRestClient(key); Members = new Members(_restClient); Boards = new Boards(_restClient); Lists = new Lists(_restClient); Cards = new Cards(_restClient); Checklists = new Checklists(_restClient); Organizations = new Organizations(_restClient); Notifications = new Notifications(_restClient); Tokens = new Tokens(_restClient); Async = new AsyncTrello(_restClient); Actions = new Actions(_restClient); }
public Trello(string key, bool createEmptyProxy = false) { _restClient = new TrelloRestClient(key, createEmptyProxy); Members = new Members(_restClient); Boards = new Boards(_restClient); Lists = new Lists(_restClient); Cards = new Cards(_restClient); Checklists = new Checklists(_restClient); Organizations = new Organizations(_restClient); Notifications = new Notifications(_restClient); Tokens = new Tokens(_restClient); Async = new AsyncTrello(_restClient); Actions = new Actions(_restClient); Advanced = new Advanced(_restClient); Webhooks = new Webhooks(_restClient); }
public AsyncBoards(TrelloRestClient restClient) { _restClient = restClient; }
public Checklists(TrelloRestClient restClient) { _restClient = restClient; }
public Lists(TrelloRestClient restClient) { _restClient = restClient; }
public AsyncOrganizations(TrelloRestClient restClient) { _restClient = restClient; }
public Cards(TrelloRestClient restClient) { _restClient = restClient; }
public Actions(TrelloRestClient restClient) { _restClient = restClient; }
public AsyncWebhooks(TrelloRestClient restClient) { _restClient = restClient; }
public Webhooks(TrelloRestClient restClient) { _restClient = restClient; }
public Tokens(TrelloRestClient restClient) { _restClient = restClient; }
public Notifications(TrelloRestClient restClient) { _restClient = restClient; }
internal Members(TrelloRestClient restClient) { _restClient = restClient; }
public AsyncTokens(TrelloRestClient restClient) { _restClient = restClient; }
internal Boards(TrelloRestClient restClient) { _restClient = restClient; }