public IActionResult Index() { List <Notice> notice = _noticeBll.GetList(); List <Board> board = _boardBll.GetList(); var tuple = new ValueTuple <List <Notice>, List <Board> >(notice, board); return(View(tuple)); }