public IActionResult SeeAllBoardLists() { var trelloService = new TrelloService(); TrelloVm vm = new TrelloVm(); vm.Lists = trelloService.GetAllListsForBoard("5c5bec8b2e25ff7be13fb912").Result; return(View("SeeAllBoardLists")); }
public IActionResult SeeAllBoards() { var trelloService = new TrelloService(); TrelloVm vm = new TrelloVm(); vm.Boards = trelloService.GetAllBoards().Result; return(View("SeeAllBoards", vm)); }