public async Task DeleteLinkRequestAsync(LinkRequest request)
 {
     await this.context.DeleteAsync <LinkRequest>(
         request.TwitchUsername,
         request.DiscordUsername,
         this.config,
         CancellationToken.None);
 }
 public async Task SaveLinkRequestAsync(LinkRequest request)
 {
     await this.context.SaveAsync <LinkRequest>(request, this.config);
 }