private Message CreateMessage(string text, int botId)
 {
     return(new Message
     {
         Text = text,
         Timestamp = _utils.GenerateTimestamp(),
         ChatBotId = botId
     });
 }