public Handler(DataContext context, ITwitchbot twitchBot, IQuestionsBotQueue questionsBotQueue)
 {
     _context           = context;
     _twitchBot         = twitchBot;
     _questionsBotQueue = questionsBotQueue;
 }
 public QuestionsBotService(IQuestionsBotQueue queue)
 {
     _queue = queue;
     Console.Out.WriteLine("Starting service");
 }