private string FormatContent(int reactionCount) { return($"**{reactionCount}** {_starboardService.GetStarEmote(reactionCount)}"); }
private string FormatContent(IUserMessage message, IEmote emote) { var reactionCount = _service.GetReactionCount(message, emote); return($"**{reactionCount}** {_service.GetStarEmote(reactionCount)}"); }