Inheritance: ICards
コード例 #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
ファイル: 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);
        }