Example #1
0
        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);
        }
Example #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);
        }
Example #3
0
        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);
        }
Example #4
0
        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);
        }
Example #5
0
        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);
        }
Example #6
0
 public AsyncBoards(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #7
0
 public Checklists(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #8
0
 public Lists(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
 public AsyncOrganizations(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #10
0
		public Cards(TrelloRestClient restClient)
		{
			_restClient = restClient;
		}
Example #11
0
 public Actions(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #12
0
 public AsyncWebhooks(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
 public Webhooks(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
 public Tokens(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #15
0
		public Notifications(TrelloRestClient restClient)
		{
			_restClient = restClient;
		}
Example #16
0
 internal Members(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
Example #17
0
		public AsyncTokens(TrelloRestClient restClient)
		{
			_restClient = restClient;
		}
Example #18
0
		internal Boards(TrelloRestClient restClient)
		{
			_restClient = restClient;
		}