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