Example #1
0
        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);
            Actions       = new AsyncActions(_restClient);
        }
 public AsyncActions(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #3
0
 internal AsyncLabels(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #4
0
 public AsyncNotifications(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #5
0
 public Cards(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
 public AsyncWebhooks(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #7
0
 public Organizations(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #8
0
 internal Members(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #9
0
 public Checklists(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
 public AsyncAdvanced(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #11
0
 public AsyncLists(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #12
0
 internal Boards(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
 public AsyncTokens(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #14
0
 public AsyncBoards(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }