private IIntelliTwitchCommand[] commandList;   //Created with reflection. Finds all commands created and in the project.

        #region Constructor

        public IntelliTwitchInterpreter(string serviceName, IntelliTwitchIRC chatClient)
        {
            dataService = new IntelliTwitchDataService(serviceName + ".db");
            client      = chatClient;
            Init();
        }
 public void Start()
 {
     chatClient = new IntelliTwitchIRC(botInfo, databaseName);
 }