예제 #1
0
        public Task <IEnumerable <ItemFollowerToken> > GetFollowerTokensAsync(IAuthenticationScope authenticationScope)
        {
            var mapper = new ItemFollowerTokenMapper();

            return(GetItems(authenticationScope, mapper, _followerTokenIndices));
        }
예제 #2
0
        public Task <ItemFollowerToken> GetFollowerTokenAsync(IAuthenticationScope authenticationScope, ItemId itemId)
        {
            var mapper = new ItemFollowerTokenMapper();

            return(GetItem(authenticationScope, mapper, itemId));
        }