public ActionResult Index() { int userID = (int)Session["userID"]; List <Follower> followings = _followerService.GetFollowings(userID).ToList(); MainPageViewModel mainPageViewModel = new MainPageViewModel { MainPageDatas = _diaryService.GetDiariesByAccount(followings) }; return(View(mainPageViewModel)); }