public Task <IEnumerable <long> > GetMutesAsync(long userId)
 {
     return(_mutes.GetUsersAsync(userId));
 }
 public Task <IEnumerable <long> > GetBlockingsAsync(long userId)
 {
     return(_blockings.GetUsersAsync(userId));
 }
 public Task <IEnumerable <long> > GetNoRetweetsAsync(long userId)
 {
     return(_noRetweets.GetUsersAsync(userId));
 }
 public Task <IEnumerable <long> > GetFollowersAsync(long userId)
 {
     return(_followers.GetUsersAsync(userId));
 }