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