public ActionResult Home()
        {
            if (Session["UserName"] == null)
            {
                return(RedirectToAction("Error"));
            }

            int       userId   = Int32.Parse(Session["UserId"].ToString());
            KoombuBll kBll     = new KoombuBll();
            HomeVm    homeVm   = new HomeVm();
            var       postList = kBll.GetAllPostForUser(userId);

            homeVm.UserPostList         = kBll.SetPostUserObject(postList);
            homeVm.UserConnected        = kBll.GetUser(userId);
            homeVm.FollowedUsersObjects = kBll.GetFollowedUsersObject(userId);
            return(View(homeVm));
        }