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