AccountManagement.Accounts.Controllers.FollowersController.Index C# (CSharp) 메소드

Index() 개인적인 메소드

private Index ( string accountId ) : FollowersRepresentation
accountId string
리턴 FollowersRepresentation
        public FollowersRepresentation Index(string accountId)
        {
            return new FollowersRepresentation
            {
                Href = AccountsBaseUrl + "accounts/" + accountId + "/followers",
                Rel = "self",
                Links = new List<Link>
                {
                    new Link
                    {
                        Href = AccountsBaseUrl + "accounts/" + accountId + "/followers?pages=2",
                        Rel = "next",
                    },
                },
                followers = GetFollowers(accountId)
            };
        }