public MelenchBotDBInterractions(MelenchBot theMelenchBot)
        {
            melenchBot = theMelenchBot;

            dbWarningCommunication = new DBWarningCommunication();
            lsWarnings             = dbWarningCommunication.getWarnings();
            dbStatusCommunication  = new DBStatusCommunication();
            lsStatus            = dbStatusCommunication.getStatuss();
            dbUserCommunication = new DBUserCommunication();
            lsUsers             = dbUserCommunication.getUsers(lsStatus);

            foreach (KeyValuePair <string, User> u in lsUsers.list)
            {
                dbUserCommunication.setUserWarnings(u.Value);
            }
        }