Esempio n. 1
0
 public Task <IEnumerable <long> > GetMutesAsync(long userId)
 {
     return(_mutes.GetUsersAsync(userId));
 }
Esempio n. 2
0
 public Task <IEnumerable <long> > GetBlockingsAsync(long userId)
 {
     return(_blockings.GetUsersAsync(userId));
 }
Esempio n. 3
0
 public Task <IEnumerable <long> > GetNoRetweetsAsync(long userId)
 {
     return(_noRetweets.GetUsersAsync(userId));
 }
Esempio n. 4
0
 public Task <IEnumerable <long> > GetFollowersAsync(long userId)
 {
     return(_followers.GetUsersAsync(userId));
 }