public QueuedHostedService(IBackgroundTaskQueue taskQueue, IOtherBackgroundTaskQueue otherBackgroundTaskQueue)
 {
     _taskQueue = taskQueue;
     this.otherBackgroundTaskQueue = otherBackgroundTaskQueue;
 }
 public OtherQueuedHostedService(IOtherBackgroundTaskQueue taskQueue)
 {
     _taskQueue = taskQueue;
 }