示例#1
0
        public IActionResult SeeAllBoardLists()
        {
            var trelloService = new TrelloService();

            TrelloVm vm = new TrelloVm();

            vm.Lists = trelloService.GetAllListsForBoard("5c5bec8b2e25ff7be13fb912").Result;

            return(View("SeeAllBoardLists"));
        }
示例#2
0
        public IActionResult SeeAllBoards()
        {
            var trelloService = new TrelloService();

            TrelloVm vm = new TrelloVm();

            vm.Boards = trelloService.GetAllBoards().Result;

            return(View("SeeAllBoards", vm));
        }