Felbook.Controllers.UserController.Followings C# (CSharp) Method

Followings() public method

public Followings ( string username ) : ActionResult
username string
return ActionResult
        public ActionResult Followings(string username)
        {
            var user = Model.UserService.FindByUsername(username);

            return View(new FollowingsViewModel {
                CurrentUser = CurrentUser,
                User = user,
                Followings = user.Followings,
            });
        }