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);
            Advanced      = new AsyncAdvanced(_restClient);
            Webhooks      = new AsyncWebhooks(_restClient);
        }
Ejemplo n.º 2
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);
		    Advanced = new AsyncAdvanced(_restClient);
		    Webhooks = new AsyncWebhooks(_restClient);
		}