AccountManagement.Controllers.FollowerDirectoryController.GetUsersFollowers C# (CSharp) Method

GetUsersFollowers() public method

public GetUsersFollowers ( string accountId ) : IHttpActionResult
accountId string
return IHttpActionResult
        public IHttpActionResult GetUsersFollowers(string accountId)
        {
            var followers = GenerateDummyFollowers().ToList();
            return Json(followers);
        }