コード例 #1
0
ファイル: Trello.cs プロジェクト: DrVoodoo/trellonet
        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);
        }
コード例 #2
0
ファイル: AsyncTrello.cs プロジェクト: daniellee/trellonet
        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);
        }
コード例 #3
0
ファイル: Trello.cs プロジェクト: daniellee/trellonet
        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);
        }
コード例 #4
0
ファイル: Trello.cs プロジェクト: michaloniieu/Trello.NET
        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);
        }
コード例 #5
0
ファイル: Trello.cs プロジェクト: PeacefulCake/TrelloAPI
        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);
        }
コード例 #6
0
ファイル: AsyncBoards.cs プロジェクト: espressomorte/Supakull
 public AsyncBoards(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
コード例 #7
0
ファイル: Checklists.cs プロジェクト: DrVoodoo/trellonet
 public Checklists(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
コード例 #8
0
ファイル: Lists.cs プロジェクト: daniellee/trellonet
 public Lists(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
コード例 #9
0
 public AsyncOrganizations(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
コード例 #10
0
ファイル: Cards.cs プロジェクト: Geniegl/Trello.NET
		public Cards(TrelloRestClient restClient)
		{
			_restClient = restClient;
		}
コード例 #11
0
ファイル: Actions.cs プロジェクト: tjanssens/trellonet
 public Actions(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
コード例 #12
0
ファイル: AsyncWebhooks.cs プロジェクト: Geniegl/Trello.NET
 public AsyncWebhooks(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
コード例 #13
0
 public Webhooks(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
コード例 #14
0
 public Tokens(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
コード例 #15
0
ファイル: Notifications.cs プロジェクト: Bunk/trellow
		public Notifications(TrelloRestClient restClient)
		{
			_restClient = restClient;
		}
コード例 #16
0
ファイル: Members.cs プロジェクト: daniellee/trellonet
 internal Members(TrelloRestClient restClient)
 {
     _restClient = restClient;
 }
コード例 #17
0
ファイル: AsyncTokens.cs プロジェクト: Geniegl/Trello.NET
		public AsyncTokens(TrelloRestClient restClient)
		{
			_restClient = restClient;
		}
コード例 #18
0
ファイル: Boards.cs プロジェクト: Bunk/trellow
		internal Boards(TrelloRestClient restClient)
		{
			_restClient = restClient;
		}