Beispiel #1
0
        public async Task <IEnumerable <UserInfo> > GetFollowersAsync(Guid user, int take, int skip)
        {
            var ids = await relationsApi.SearchFollowersAsync(user, skip, take);

            return(await GetProfilesByIdsAsync(ids));
        }